﻿.privacy-page {
    padding: 24px;
    box-sizing: border-box;
}

.privacy-page__hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    align-items: center;
    gap: 32px;
    padding: 42px 36px;
    border: 1px solid #cfe4cf;
    background: linear-gradient(135deg, #ffffff 0%, #f8fff6 100%);
    box-sizing: border-box;
}

.privacy-page__hero-content {
    min-width: 0;
}

.privacy-page__hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.privacy-page__mascot {
    display: block;
    width: 220px;
    max-width: 100%;
    height: auto;
}

.privacy-page__eyebrow {
    margin: 0 0 12px;
    color: #2f8f2f;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.privacy-page__title {
    margin: 0;
    max-width: 820px;
    color: #111;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
}

.privacy-page__lead {
    margin: 20px 0 0;
    max-width: 820px;
    color: #333;
    font-size: 20px;
    line-height: 1.65;
}

.privacy-page__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 22px;
}

.privacy-page__card {
    padding: 28px 32px;
    border: 1px solid #dedede;
    background: #fff;
    box-sizing: border-box;
}

.privacy-page__card--accent {
    border-color: #cfe4cf;
    background: #f8fff6;
}

.privacy-page__section-title {
    margin: 0 0 14px;
    color: #111;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
}

.privacy-page__paragraph {
    margin: 0;
    color: #333;
    font-size: 17px;
    line-height: 1.75;
}

.privacy-page__contact {
    padding: 30px 32px;
    border: 1px solid #cfe4cf;
    border-left: 6px solid #2f8f2f;
    background: linear-gradient(135deg, #ffffff 0%, #f8fff6 100%);
    box-sizing: border-box;
}

.privacy-page__contact-title {
    margin: 0 0 12px;
    color: #111;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
}

.privacy-page__contact-text {
    margin: 0 0 16px;
    color: #333;
    font-size: 18px;
    line-height: 1.7;
}

.privacy-page__email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border: 1px solid #2f8f2f;
    background: #f8fff6;
    color: #1b5e20;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    box-sizing: border-box;
    transition: background-color 0.2s ease, color 0.2s ease;
}

    .privacy-page__email:hover {
        background: #2f8f2f;
        color: #fff;
    }

@media (max-width: 768px) {
    .privacy-page {
        padding: 14px 12px 20px;
    }

    .privacy-page__hero {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 28px 18px;
    }

    .privacy-page__hero-media {
        order: -1;
    }

    .privacy-page__mascot {
        width: 170px;
    }

    .privacy-page__title {
        font-size: 32px;
    }

    .privacy-page__lead {
        font-size: 17px;
        line-height: 1.6;
    }

    .privacy-page__card,
    .privacy-page__contact {
        padding: 22px 18px;
    }

    .privacy-page__section-title,
    .privacy-page__contact-title {
        font-size: 24px;
    }

    .privacy-page__paragraph,
    .privacy-page__contact-text {
        font-size: 16px;
        line-height: 1.65;
    }

    .privacy-page__email {
        width: 100%;
        font-size: 16px;
        text-align: center;
        word-break: break-word;
    }
}
