/* ========== СТАТИЧЕСКИЕ СТРАНИЦЫ ========== */

.page-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
}

.page-card {
    background: white;
    border-radius: 20px;
    padding: 40px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-top: 20px;
}

.page-card h1 {
    color: #667eea;
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}

.page-subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.page-back-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: white;
    text-decoration: none;
}

.page-back-link:hover {
    text-decoration: underline;
}

/* Контакты */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f9fafb;
    border-radius: 12px;
    margin-bottom: 15px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    color: white;
}

.contact-text h3 {
    color: #333;
    font-size: 15px;
    margin-bottom: 3px;
}

.contact-text p {
    color: #666;
    font-size: 14px;
}

.contact-text a {
    color: #667eea;
    text-decoration: none;
}

.contact-text a:hover {
    text-decoration: underline;
}

.contact-hint {
    font-size: 12px;
    color: #999;
}

.form-title {
    color: #667eea;
    font-size: 18px;
    margin: 25px 0 15px;
    text-align: center;
}

/* Форма */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-green {
    background: #48bb78;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-top: 5px;
    transition: background 0.3s;
}

.btn-green:hover {
    background: #38a169;
}

.required {
    color: #e53e3e;
}

.alert {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
}

@media (max-width: 480px) {
    .page-card {
        padding: 25px 15px;
    }
    .page-card h1 {
        font-size: 20px;
    }
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}


/* ========== ПОЛИТИКА КОНФИДЕНЦИАЛЬНОСТИ ========== */

.page-card h2 {
    color: #333;
    font-size: 17px;
    margin: 20px 0 8px;
}

.page-card h3 {
    color: #444;
    font-size: 15px;
    margin: 15px 0 5px;
}

.page-card p, .page-card li {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.page-card ul {
    margin-left: 18px;
    margin-bottom: 12px;
    padding-right: 5px;
}

.page-card {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-card strong {
    color: #333;
}

@media (max-width: 480px) {
    .page-card h1 {
        font-size: 19px;
    }
    .page-card h2 {
        font-size: 15px;
    }
    .page-card p, .page-card li {
        font-size: 13px;
    }
}