body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #222;
    line-height: 1.6;
}
/* HEADER SECTION STYLES */
.header-container {
    position: relative;
    height: 80px;
    overflow: hidden;
}

.gray-bar {
    background-color: #777;
    height: 30px;
}

.angled-header {
    position: absolute;
    top: 0;
    left: 300px;
    width: calc(100% - 300px);
    height: 80px;
    background-color: #c2d9ec;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 100px 100%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-text {
    position: absolute;
    right: 20px;
    top: 20px;
    color: white;
    font-weight: bold;
}

.container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 40px;
}

/* MAIN TITLE */
.privacy-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    text-align: center;
    color: #005baa;
}

/* ALL SUB STITLE */
.sub-title {
    font-size: 1em;
    margin-bottom: 10px;
    color: #000;
    text-align: center;
    font-weight: 700;
    text-decoration: underline;
}

.italic-title {
    font-size: 1em;
    margin-bottom: 10px;
    color: #000;
    text-align: center;
    font-weight: 700;
    font-style: italic;
}

.bold-label {
    font-weight: 700;
}

.modified-section {
    margin: 12px 0;
    text-align: center;
}

.p {
    margin-top: 0;
}

/* LIST WITH PADDING LEFT */
ul {
    padding-left: 50px;
    margin: 5px 0;
}

a {
    color: #0056b3;
    text-decoration: underline;
}


.footer {
    background-color: #cde0f4;
    /* Light blue background */
    padding: 10px 0;
    text-align: center;
}

.footer-text {
    color: #ffffff;
    /* White text */
    font-weight: bold;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

/* responsive */
/* Media query for tablet and smaller screens */
@media (max-width: 768px) {
    .angled-header {
        left: 200px;
        width: calc(100% - 200px);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 70px 100%);
    }

    .header-text {
        font-size: 1rem;
        right: 10px;
        top: 15px;
    }
}

/* Media query for mobile screens */
@media (max-width: 480px) {
    .angled-header {
        left: 100px;
        width: calc(100% - 100px);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 40px 100%);
    }

    .header-text {
        font-size: 0.9rem;
        right: 10px;
        top: 10px;
    }

    .container {
        padding: 0 20px;
        margin: 50px auto;
    }
}