/* === PRIVACY POLICY STYLES === */
/* Based on styles.css design system */

/* Hero Section */
.privacy-hero {
    background: linear-gradient(180deg, #1d8279 0%, rgba(29, 130, 121, 0.8) 100%);
    color: white;
    padding: 64px 20px;
    position: relative;
    overflow: hidden;
}

.privacy-header-content {
    position: relative;
    z-index: 1;
    max-width: 1312px;
    margin: 0 auto;
}

.privacy-hero h1 {
    font-size: 80px;
    font-weight: 900;
    margin: 24px 0 0 0;
    line-height: 1.2;
    color: white;
}

.privacy-hero .intro-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.55;
    margin: 24px 0 0 0;
    color: white;
    max-width: 1100px;
}

/* Hide section badge */
.privacy-hero .section-badge {
    display: none;
}

/* Privacy Content */
.privacy-content {
    opacity: 1;
    padding: 64px 20px;
    background: white;
}

.privacy-section {
    max-width: 1312px;
    margin: 0 auto 48px;
    scroll-margin-top: 100px;
}

.privacy-section h2 {
    font-size: 32px;
    color: #3B3B3A;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.privacy-section h3 {
    font-size: 16px;
    color: #3B3B3A;
    margin-top: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}

.privacy-section p {
    color: #3B3B3A;
    line-height: 1.55;
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 600;
}

/* Info Boxes - Grouped sections */
.info-box {
    background: white;
    padding: 0;
    margin: 48px 0;
    border: none;
}

.info-box h3 {
    font-size: 16px;
    color: #3B3B3A;
    margin-top: 0;
    margin-bottom: 16px;
    font-weight: 600;
}

.info-box p {
    color: #3B3B3A;
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 16px;
    font-weight: 600;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.info-box ul {
    margin: 16px 0;
    padding: 0;
    list-style: none;
}

.info-box ul li {
    color: #3B3B3A;
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
    font-weight: 600;
}

.info-box ul li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #1d8279;
    font-weight: 900;
}

/* Links */
.privacy-section a {
    color: #1d8279;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: #40B8B2;
    text-decoration: underline;
}

/* Security Features Grid */
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin: 32px 0;
}

.feature {
    background: white;
    padding: 0;
    border: none;
}

.feature h3 {
    font-size: 16px;
    color: #3B3B3A;
    margin-top: 0;
    margin-bottom: 16px;
    font-weight: 600;
}

.feature p {
    color: #3B3B3A;
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
    font-weight: 600;
}

/* Cookie Types */
.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin: 32px 0;
}

.cookie-type {
    background: white;
    padding: 0;
    border: none;
}

.cookie-type h3 {
    font-size: 16px;
    color: #3B3B3A;
    margin-top: 0;
    margin-bottom: 16px;
    font-weight: 600;
}

.cookie-type p {
    color: #3B3B3A;
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
    font-weight: 600;
}

/* Lists in sections */
.privacy-section ul {
    margin: 16px 0;
    padding: 0;
    list-style: none;
}

.privacy-section ul li {
    color: #3B3B3A;
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
    font-weight: 600;
}

.privacy-section ul li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #1d8279;
    font-weight: 900;
}

/* Updates/Final Section */
.updates-section {
    background: white;
    padding: 0;
    border: none;
    margin-top: 48px;
}

.updates-section h2 {
    color: #3B3B3A;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 24px;
    line-height: 1.2;
}


/* Responsive - Tablet */
@media (max-width: 768px) {
    .privacy-hero {
        padding: 48px 20px;
    }

    .privacy-hero h1 {
        font-size: 40px;
    }

    .privacy-hero .intro-text {
        font-size: 16px;
    }

    .privacy-content {
        padding: 48px 20px;
    }

    .privacy-section {
        margin-bottom: 40px;
    }

    .privacy-section h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .privacy-section h3 {
        font-size: 15px;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .privacy-section p {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .security-features,
    .cookie-types {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .info-box {
        margin: 32px 0;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .privacy-hero {
        padding: 40px 20px;
    }

    .privacy-hero h1 {
        font-size: 32px;
        margin: 16px 0 0 0;
    }

    .privacy-hero .intro-text {
        font-size: 15px;
        margin-top: 16px;
        line-height: 1.5;
    }

    .privacy-content {
        padding: 32px 20px;
    }

    .privacy-section {
        margin-bottom: 32px;
    }

    .privacy-section h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .privacy-section h3 {
        font-size: 14px;
        margin-top: 16px;
        margin-bottom: 12px;
    }

    .privacy-section p,
    .privacy-section ul li {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .info-box ul li {
        padding-left: 28px;
        margin-bottom: 8px;
    }

    .security-features,
    .cookie-types {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}