/* Privacy-specific styles
   This file contains rules prefixed with `privacy-` for the privacy page
   Adapted from contact-intro styles
*/

.privacy-intro {
    /* background: #f8f9fa; */
    color: #071133;
}

.privacy-intro__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0px 0px 2rem 0px;
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.hero.privacy {
    height: 32vh;
}

/* Match nav-container horizontal padding on narrower viewports without changing vertical spacing */
@media (max-width: 1400px) {
    .privacy-intro__container {
        padding-left: var(--gutter);
        padding-right: var(--gutter);
    }
}

@media (max-width: 768px) {
    .privacy-intro__container {
        padding-left: 18px;
        padding-right: 18px;
    }
}

.privacy-intro__left {
    flex: 0 0 32%;
    position: sticky;
    top: 80px;
    align-self: start;
    z-index: 80;
}

.privacy-intro__eyebrow {
    color: rgb(61 88 160);
    font-size: 16px;
    margin-bottom: 14px;
    text-transform: none;
    padding: 0.75rem 1.5rem;
    background: rgb(57 98 167 / 10%);
    width: fit-content;
    border-radius: 100px;
    font-weight: 500;
}

.privacy-intro__big {
    margin: 0;
    font-size: 48px;
    line-height: 48px;
    font-weight: 700;
    color: #1a1a1a;
    word-break: break-word;
}

.privacy-date_txt {
    margin: 16px 0px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #1a1a1a;
    word-break: break-word;
}

.privacy-intro__right {
    flex: 1 1 58%;
    /* margin-top: -330px; */
}

.privacy-intro__icon {
    width: auto;
    max-height: 150px;
    margin-top: 20px;
    filter: hue-rotate(-76deg);
}

@media (max-width: 1024px) {
    .privacy-intro__left {
        position: static;
        top: auto;
    }
}

@media (max-width: 980px) {
    .privacy-intro__container {
        gap: 28px;
    }

    .privacy-intro__left {
        flex: 0 0 36%;
        min-width: 256px;
    }

    .privacy-intro__big {
        font-size: 40px;
    }
}

@media (max-width: 680px) {
    .privacy-intro__container {
        display: block;
        padding: 36px var(--gutter);
    }

    .privacy-intro__left {
        margin-bottom: 20px;
    }

    .privacy-intro__big {
        text-align: left;
    }
}

/* Privacy Content Section Styles */
.privacy-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.privacy-section {
    padding: 12px 24px 24px 24px;
    background: rgba(255, 255, 255, 0.6);
    border-left: 4px solid rgb(69 89 147);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.privacy-section:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgb(233 238 252);
}

.privacy-section--last {
    border-left-color: #2b5282;
}

.privacy-section__title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 12px 0 0px 0;
    line-height: 1.3;
}

.privacy-subsection__title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 12px 0 0px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.privacy-section a {
    color: rgb(61 88 160);
    transition: 0.3s ease;
    font-weight: 500;
}

.privacy-section a:hover {
    color: rgb(82, 114, 202);
    transition: 0.3s ease;
}

.privacy-subsection__title::before {
    display: inline-block;
    background: rgb(61 88 160);
    border-radius: 50%;
}

.privacy-section__text {
    color: #333333;
    font-size: 16px;
    line-height: 24px;
    margin: 12px 0px 0px 0px;
    font-weight: 400;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
}

.privacy-list li {
    color: #333333;
    font-size: 16px;
    line-height: 24px;
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px;
}

.privacy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgb(69 89 147);
    font-weight: 700;
    font-size: 16px;
}

.privacy-contact {
    color: #1a1a1a;
    font-size: 15px;
    margin: 4px 0 0 0;
}

.privacy-contact a {
    color: #00AB4E;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-contact a:hover {
    color: #2b5282;
    text-decoration: underline;
}

@media (max-width: 980px) {
    .privacy-section {
        padding: 20px;
    }

    .privacy-section__title {
        font-size: 20px;
    }

    .privacy-subsection__title {
        font-size: 16px;
    }
}

@media (max-width: 680px) {
    .privacy-content {
        gap: 20px;
    }

    .privacy-section {
        padding: 18px;
        border-left-width: 3px;
    }

    .privacy-section__title {
        font-size: 18px;
    }

    .privacy-subsection__title {
        font-size: 15px;
    }

    .privacy-section__text,
    .privacy-list li {
        font-size: 14px;
    }
}