/* Общие стили для страниц About и Privacy */

/* Page Section */
.page-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.page-container {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.page-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #666;
    font-weight: 400;
    margin: 0;
}

/* Intro Card */
.intro-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    border: 1px solid #e8e8e8;
}

.intro-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: #2c6b5d;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.intro-title {
    font-size: 1.75rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Accordion */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: #d0d0d0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.accordion-item.active {
    border-color: #ffc0ac;
    box-shadow: 0 4px 16px rgba(44, 107, 93, 0.08);
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.accordion-header:hover {
    background: #fafafa;
}

.accordion-item.active .accordion-header {
    background: #f8faf9;
}

.accordion-header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.accordion-number {
    font-size: 0.875rem;
    font-weight: 600;
    color: #999;
    min-width: 32px;
}

.accordion-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1a1a1a;
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #999;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: #2c6b5d;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    margin-top: 20px;
    max-height: 3000px;
}

.accordion-body {
    padding: 0 2rem 2rem 2rem;
    color: #444;
    line-height: 1.7;
}

.accordion-body p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

.accordion-body strong {
    color: #1a1a1a;
    font-weight: 600;
}

.accordion-body em {
    color: #2c6b5d;
    font-style: italic;
}

.accordion-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.accordion-body li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.accordion-body a {
    color: #2c6b5d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.accordion-body a:hover {
    color: #1a4a3f;
    text-decoration: underline;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f0f4f2;
    transform: translateY(-2px);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 10px;
    color: #2c6b5d;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.contact-text {
    flex: 1;
}

.contact-text strong {
    display: block;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.contact-text p {
    margin: 0;
    color: #555;
    line-height: 1.5;
    font-size: 0.95rem;
}

.contact-text a {
    color: #2c6b5d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #1a4a3f;
}

/* Requisites Grid */
.requisites-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.requisite-item {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.requisite-item:hover {
    background: #f0f4f2;
}

.requisite-label {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.requisite-value {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 500;
    word-break: break-word;
}

/* Responsive */
@media (max-width: 768px) {
    .page-section {
        padding: 2rem 1rem;
    }

    .page-title {
        font-size: 2.25rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .intro-card {
        padding: 2rem 1.5rem;
    }

    .intro-title {
        font-size: 1.5rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .accordion-header {
        padding: 1.5rem 1.25rem;
    }

    .accordion-header-content {
        gap: 1rem;
    }

    .accordion-title {
        font-size: 1.1rem;
    }

    .accordion-body {
        padding: 0 1.25rem 1.5rem 1.25rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-item {
        padding: 1.25rem;
    }

    .requisites-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-header {
        margin-bottom: 3rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .intro-card {
        padding: 1.5rem 1rem;
    }

    .intro-icon {
        width: 64px;
        height: 64px;
    }

    .accordion-header {
        padding: 1.25rem 1rem;
    }

    .accordion-number {
        display: none;
    }

    .accordion-title {
        font-size: 1rem;
    }

    .accordion-body {
        padding: 0 1rem 1.25rem 1rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .contact-icon {
        width: 36px;
        height: 36px;
    }

    .requisite-item {
        padding: 1rem;
    }
}