
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f8fc;
    color: #30476b;
}

.header-details {
    background:
        linear-gradient(
            120deg,
            #142b5f 0%,
            #101a38 55%,
            #281553 100%
        );

    color: white;
    padding: 80px 15%;
    min-height: 320px;
    box-sizing: border-box;
}
.header-details h6{
    font-size: 15px;
}

/* Back to Home */

.privacy-header a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #dbe7ff;
    text-decoration: none;

    font-size: 18px;
    margin-bottom: 40px;

    transition: 0.3s ease;
}

.privacy-header a:hover {
    color: white;
    transform: translateX(-3px);
}


/* Main Heading */

.privacy-header h1 {
    margin: 0 0 15px;

    font-size: 48px;
    font-weight: 700;

    color: white;
}


/* Subtitle */

.privacy-header p {
    margin: 0 0 25px;

    font-size: 24px;
    line-height: 1.5;

    color: #d7e2f5;
}


/* Last Updated */

.privacy-header .last-updated {
    font-size: 18px;
    color: #9fb5d8;
}



.privacy-details {
    width: 72%;
    max-width: 1100px;

    margin: 80px auto;

    padding: 55px 62px;

    box-sizing: border-box;

    background: #ffffff;

    border-radius: 28px;

    border: 1px solid #e4eaf1;

    box-shadow:
        0 8px 30px rgba(30, 60, 100, 0.08);
}


.privacy-details h2 {
    margin: 0 0 20px;

    padding-bottom: 15px;

    font-size: 25px;
    font-weight: 700;

    color: #10244a;

    border-bottom: 1px solid #e4e9ef;
}



.privacy-details h2:not(:first-child) {
    margin-top: 45px;
}



.privacy-details p {
    margin: 0 0 20px;

    font-size: 15px;

    line-height: 1.65;

    color: #405979;
}



.privacy-details ul {
    margin: 10px 0 25px;

    padding-left: 27px;
}


.privacy-details li {
    margin-bottom: 12px;

    font-size: 15px;

    line-height: 1.55;

    color: #405979;
}


.privacy-details li::marker {
    color: #4169e1;
}


@media (max-width: 900px) {

    .privacy-header {
        padding: 65px 8%;
    }

    .privacy-header h1 {
        font-size: 40px;
    }

    .privacy-header p {
        font-size: 20px;
    }

    .privacy-details {
        width: 86%;
        padding: 45px 40px;
    }
}


@media (max-width: 600px) {

    .privacy-header {
        padding: 50px 25px;
        min-height: 280px;
    }

    .privacy-header a {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .privacy-header h1 {
        font-size: 34px;
    }

    .privacy-header p {
        font-size: 18px;
    }

    .privacy-header .last-updated {
        font-size: 15px;
    }

    .privacy-details {
        width: 92%;

        margin: 40px auto;

        padding: 30px 22px;

        border-radius: 20px;
    }

    .privacy-details h2 {
        font-size: 21px;
    }

    .privacy-details p {
        font-size: 16px;
    }

    .privacy-details li {
        font-size: 15px;
    }
}

.footer{
    margin-top: 80px;
    line-height: 0.5;
}