/* ===== ОБЩИЕ СТИЛИ ДЛЯ СТРАНИЦ ===== */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 70vh;
}

.page-hero {
    text-align: center;
    margin-bottom: 50px;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-family: 'Georgia', serif;
}

.page-hero p {
    font-size: 1.3rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Сетка контента */
.page-content {
    display: grid;
    gap: 50px;
}

/* Секции */
.page-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.page-section h2 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-family: 'Georgia', serif;
    font-size: 2.2rem;
}

/* Карточки */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.info-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 1.3rem;
}

.info-card p {
    color: #555;
    line-height: 1.6;
}

/* Методы доставки/оплаты */
.methods-grid {
    display: grid;
    gap: 25px;
}

.method {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.method:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.method-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-details h4 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 1.2rem;
}

.method-details p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.price {
    font-weight: 600;
    color: #6a0dad;
    margin-top: 8px;
    font-size: 1.1rem;
}

/* Гарантийная секция */
.guarantee-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
}

.guarantee-section h2 {
    color: white;
    margin-bottom: 20px;
}

.guarantee-section p {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* FAQ */
.faq-section {
    margin-top: 50px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    background: #f8f9fa;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 20px 25px;
    max-height: 500px;
}

/* Контактная информация */
.contact-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 20px;
    min-width: 40px;
    text-align: center;
}

.contact-details h3 {
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-size: 1.2rem;
}

.contact-details p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.working-hours {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
}

.working-hours h4 {
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Форма обратной связи */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h2 {
    margin-bottom: 30px;
    color: #2c3e50;
    font-family: 'Georgia', serif;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #6a0dad;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #373738, #000000);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #000000, #000000);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.3);
}

/* Социальные сети */
.social-contacts {
    margin-top: 40px;
    text-align: center;
}

.social-contacts h3 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.social-link-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.social-link-large.vk { background: #0077FF; color: white; }
.social-link-large.telegram { background: #0088cc; color: white; }

/* Карта */
.map-section {
    margin-top: 50px;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    font-family: 'Georgia', serif;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 400px;
}

/* Команда */
.team-section {
    margin-top: 60px;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.team-member .role {
    color: #6a0dad;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
    
    .page-section {
        padding: 25px;
    }
    
    .method {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-info, .contact-form {
        padding: 25px;
    }
    
    .social-links-large {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link-large {
        width: 200px;
        justify-content: center;
    }
    
    .page-container {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 40px 15px;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .page-section h2 {
        font-size: 1.8rem;
    }
}