/* Privacy Policy Page Styles */

/* Hero Section */
.privacy-hero-section {
    background: #E62D5B;
    height: 480px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.privacy-hero-container {
    max-width: 1440px;
    width: 100%;
    margin-top: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Hero Title */
.privacy-hero-title {
    width: 666px;
    max-width: 100%;
    height: auto;
    font-family: 'Cal Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 60px;
    line-height: 72px;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

/* Hero Description */
.privacy-hero-description {
    width: 914px;
    max-width: 100%;
    height: auto;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

/* Content Section */
.privacy-content-section {
    background: #FFFFFF;
    width: 100%;
    padding: 80px 20px;
}

.privacy-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Content Headings */
.privacy-heading {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 16px;
}

.privacy-heading:first-child {
    margin-top: 0;
}

/* Content Text */
.privacy-text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
    margin-bottom: 16px;
}

.privacy-text strong {
    font-weight: 700;
}

/* Content Lists */
.privacy-list {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
    margin-bottom: 16px;
    padding-left: 24px;
}

.privacy-list li {
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-hero-section {
        height: auto;
        min-height: 400px;
        padding: 60px 20px;
    }

    .privacy-hero-title {
        font-size: 40px;
        line-height: 48px;
        width: 100%;
    }

    .privacy-hero-description {
        font-size: 18px;
        width: 100%;
    }

    .privacy-content-section {
        padding: 60px 20px;
    }

    .privacy-heading {
        font-size: 18px;
        margin-top: 32px;
    }

    .privacy-text {
        font-size: 15px;
    }

    .privacy-list {
        font-size: 15px;
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-hero-section {
        min-height: 350px;
        padding: 40px 16px;
    }

    .privacy-hero-title {
        font-size: 32px;
        line-height: 40px;
    }

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

    .privacy-content-section {
        padding: 40px 16px;
    }

    .privacy-heading {
        font-size: 17px;
        margin-top: 28px;
    }

    .privacy-text {
        font-size: 14px;
    }

    .privacy-list {
        font-size: 14px;
        padding-left: 18px;
    }
}