/* Advanced Glassmorphic Container */
.privacypolicy-container {
    width: 90%;
    max-width: 1200px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    box-shadow: 0px 0px 20px rgba(50, 205, 50, 0.5);
    transition: transform 0.3s ease-in-out;
    text-align: left;
    margin: 60px auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Title */
.privacypolicy-title {
    font-size: 32px;
    color: #32CD32;
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 0px 0px 12px rgba(50, 205, 50, 0.8);
}

/* Section Headings */
.privacypolicy-content h2 {
    font-size: 24px;
    color: #32CD32;
    margin-top: 30px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 6px;
    text-align: left;
}

/* Section Headings */
.privacypolicy-content h3 {
    font-size: 18px;
    color: #32CD32;
    position: relative;
    text-align: left;
}

/* Small border bottom effect positioned at the left */
.privacypolicy-content h2::after {
    content: "";
    display: block;
    width: 10%;
    /* Only 10% of the width */
    height: 3px;
    background-color: #32CD32;
    position: absolute;
    left: 0;
    /* Aligns the border to the left */
    bottom: 0;
    /* Positions the border at the bottom */
}

/* Paragraphs */
.privacypolicy-content p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}


/* Links */
.privacypolicy-content a {
    color: #32CD32;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacypolicy-content a:hover {
    text-shadow: 0px 0px 12px #32CD32;
}

.privacypolicy-list {
    list-style: none;
    padding-left: 0;
    margin: 10px;

}

.privacypolicy-list li::before {
    content: "■";
    font-size: 18px;
    line-height: 1.9;
    color: #32CD32;
    margin-right: 12px;
}

/* Responsive Design */

/* Mobile Screens (up to 600px) */
@media (max-width: 600px) {
    .privacypolicy-container {
        width: 95%;
        padding: 25px;
        margin: 30px auto;
    }

    .privacypolicy-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .privacypolicy-content h2 {
        font-size: 20px;
        margin-top: 25px;
        margin-bottom: 12px;
    }
    .privacypolicy-content h3 {
        font-size: 16px;
    }
    .privacypolicy-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .privacypolicy-list li::before {
        font-size: 16px;
        margin-right: 8px;
    }
}

/* Tablet Screens (601px to 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
    .privacypolicy-container {
        width: 90%;
        padding: 30px;
        margin: 40px auto;
    }

    .privacypolicy-title {
        font-size: 28px;
        margin-bottom: 22px;
    }

    .privacypolicy-content h2 {
        font-size: 22px;
        margin-top: 28px;
        margin-bottom: 14px;
    }
    .privacypolicy-content h3 {
        font-size: 17px;
    }

    .privacypolicy-content p {
        font-size: 17px;
        line-height: 1.8;
    }

    .privacypolicy-list li::before {
        font-size: 17px;
        margin-right: 10px;
    }
}

/* Laptop Screens (1025px to 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
    .privacypolicy-container {
        width: 85%;
        padding: 35px;
        margin: 50px auto;
    }

    .privacypolicy-title {
        font-size: 30px;
        margin-bottom: 24px;
    }

    .privacypolicy-content h2 {
        font-size: 23px;
        margin-top: 29px;
        margin-bottom: 15px;
    }
    .privacypolicy-content h3 {
        font-size: 18px;
    }

    .privacypolicy-content p {
        font-size: 18px;
        line-height: 1.9;
    }

    .privacypolicy-list li::before {
        font-size: 18px;
        margin-right: 11px;
    }
}

/* Desktop Screens (1441px and above) */
@media (min-width: 1441px) {
    .privacypolicy-container {
        width: 80%;
        padding: 40px;
        margin: 60px auto;
    }

    .privacypolicy-title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .privacypolicy-content h2 {
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .privacypolicy-content h3 {
        font-size: 18px;
    }

    .privacypolicy-content p {
        font-size: 18px;
        line-height: 1.9;
    }

    .privacypolicy-list li::before {
        font-size: 18px;
        margin-right: 12px;
    }
}