/* ===== LAYOUT CONTAINERS ===== */
.main-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.centered-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== PRIVACY BANNER ===== */
.privacy-banner {
    background-color: #0F1628;

    padding: 30px 0;
    text-align: center;
}

.privacy-banner h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: white;
}

/* ===== PRIVACY CONTENT ===== */
.privacy-content {
    padding: 40px 0;
    flex-grow: 1;
}

.privacy-text {
    background-color: white;
    border-radius: 8px;
    /* box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05); */
    padding: 40px;
    /* All content inside will be left-aligned */
    text-align: left;
}

@media (max-width: 768px) {
    .privacy-text {
        padding: 25px;
    }
}

.privacy-text p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.privacy-text h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 25px;
    color: #333;
}

.privacy-text h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin: 25px 0 15px;
    color: #444;
}

/* ===== UTILITY CLASSES ===== */
.custom-line {
    height: 2px;
    background-color: #e0e0e0;
    margin: 30px 0;
    width: 100%;
}

/* ===== CUSTOM CHECKBOXES ===== */
.custom-bullets {
    list-style: none;
    padding-left: 0;
    margin: 25px 0 35px;
}

.custom-bullets li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.custom-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0F1628;
}