/* Privacy Policy Page Styles - Matching Welcome Page Design */

.privacy-page {
    min-height: 100vh;
    padding: 2rem 1rem 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f5 100%);
}

.privacy-page::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(77, 212, 212, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.privacy-page::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 40%;
    height: 80%;
    background: radial-gradient(circle, rgba(59, 143, 214, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.privacy-decorative-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.privacy-decorative-circle.circle-1 {
    width: 10rem;
    height: 10rem;
    background: rgba(77, 212, 212, 0.06);
    top: 15%;
    left: 8%;
    border: 1px solid rgba(77, 212, 212, 0.1);
}

.privacy-decorative-circle.circle-2 {
    width: 7rem;
    height: 7rem;
    background: rgba(59, 143, 214, 0.05);
    bottom: 20%;
    right: 10%;
    border: 1px solid rgba(59, 143, 214, 0.1);
}

.privacy-decorative-circle.circle-3 {
    width: 5rem;
    height: 5rem;
    background: rgba(44, 83, 100, 0.03);
    top: 50%;
    left: 5%;
    border: 1px solid rgba(44, 83, 100, 0.08);
}

.privacy-container {
    max-width: 52rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.privacy-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    font-weight: 500;
    color: #2c5364;
    text-decoration: none;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(44, 83, 100, 0.1);
    box-shadow: 0 2px 8px rgba(44, 83, 100, 0.06);
}

.privacy-back-link:hover {
    background: #f8fbfd;
    border-color: rgba(44, 83, 100, 0.2);
    box-shadow: 0 4px 12px rgba(44, 83, 100, 0.1);
}

.privacy-back-link svg {
    color: #4dd4d4;
}

.privacy-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: #2c5364;
    margin: 0 0 0.5rem;
    letter-spacing: -0.5px;
}

.privacy-subtitle {
    font-size: 18px;
    color: #6b7c8c;
    margin: 0 0 1.25rem;
}

.privacy-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2c5364;
    background: #d4e4f0;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(44, 83, 100, 0.08);
}

.privacy-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(44, 83, 100, 0.08);
    border: 1px solid rgba(44, 83, 100, 0.06);
}

.privacy-intro {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(77, 212, 212, 0.15);
}

.privacy-intro p {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7c8c;
    margin: 0 0 1rem;
}

.privacy-intro p:last-child {
    margin-bottom: 0;
}

.privacy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(44, 83, 100, 0.08);
}

.privacy-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.privacy-section__title {
    font-size: 22px;
    font-weight: 700;
    color: #2c5364;
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.privacy-section__title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #4dd4d4, #3b8fd6);
    border-radius: 2px;
}

.privacy-section > p {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7c8c;
    margin: 0 0 1.25rem;
}

.privacy-item {
    background: #f8fbfd;
    border-left: 3px solid #4dd4d4;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.privacy-item:last-child {
    margin-bottom: 0;
}

.privacy-item h3 {
    font-size: 15px;
    font-weight: 600;
    color: #2c5364;
    margin: 0 0 0.5rem;
}

.privacy-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7c8c;
    margin: 0;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
}

.privacy-list li {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7c8c;
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
}

.privacy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #4dd4d4, #3b8fd6);
    border-radius: 50%;
}

.privacy-section--highlight {
    background: linear-gradient(135deg, rgba(77, 212, 212, 0.04), rgba(59, 143, 214, 0.04));
    border: 2px solid rgba(77, 212, 212, 0.2);
    border-radius: 12px;
    padding: 1.75rem;
    margin-bottom: 2.5rem;
}

.privacy-section--highlight .privacy-section__title::before {
    background: linear-gradient(135deg, #3b8fd6, #4dd4d4);
}

.privacy-section--contact {
    background: linear-gradient(135deg, #2c5364, #1e3a47);
    border: none;
    border-radius: 12px;
    padding: 2rem;
    color: #ffffff;
}

.privacy-section--contact .privacy-section__title {
    color: #ffffff;
}

.privacy-section--contact .privacy-section__title::before {
    background: #4dd4d4;
}

.privacy-section--contact > p {
    color: rgba(255, 255, 255, 0.85);
}

.privacy-contact-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.25rem;
}

.privacy-contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.75rem;
}

.privacy-contact-card p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.privacy-contact-card strong {
    color: #4dd4d4;
    font-weight: 600;
}

.privacy-contact-card a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.privacy-contact-card a:hover {
    color: #4dd4d4;
}

@media (max-width: 768px) {
    .privacy-page {
        padding: 1.5rem 1rem 3rem;
    }

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

    .privacy-subtitle {
        font-size: 16px;
    }

    .privacy-content {
        padding: 1.75rem 1.25rem;
        border-radius: 12px;
    }

    .privacy-intro {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .privacy-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .privacy-section__title {
        font-size: 20px;
    }

    .privacy-item {
        padding: 0.875rem 1rem;
    }

    .privacy-section--contact {
        padding: 1.5rem;
    }

    .privacy-decorative-circle.circle-1,
    .privacy-decorative-circle.circle-2,
    .privacy-decorative-circle.circle-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .privacy-title {
        font-size: 28px;
    }

    .privacy-badge {
        font-size: 10px;
        padding: 0.4rem 1rem;
    }

    .privacy-content {
        padding: 1.5rem 1rem;
    }

    .privacy-section__title {
        font-size: 18px;
    }

    .privacy-back-link {
        font-size: 13px;
        padding: 0.4rem 0.875rem;
    }
}
