/* ==========================================
   PRIVACY POLICY SECTION STYLING
========================================== */

.privacy-policy-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0 80px 0;
    font-family: 'Roboto', sans-serif;
}

.privacy-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Main Title Header */
.privacy-main-title {
    color: #0A1650;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
    border-bottom: 2px solid #eeeeee;
    padding-bottom: 15px;
}

/* Structural block list formatting stack */
.privacy-content-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Individual Content Blocks */
.privacy-block {
    width: 100%;
}

.privacy-block h4 {
    color: #1a2a6c;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.privacy-block p {
    color: #444444;
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 12px;
}

/* Structured ordered list elements */
.privacy-list {
    padding-left: 20px;
    margin-top: 10px;
}

.privacy-list li {
    color: #444444;
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Anchor styling links */
.privacy-mail-link {
    color: #246db1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.privacy-mail-link:hover {
    color: #0A1650;
    text-decoration: underline;
}

/*------------------------------------------
   RESPONSIVE DESIGN (MEDIA QUERIES)
------------------------------------------*/

@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 40px 0 60px 0;
    }

    .privacy-main-title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .privacy-block h4 {
        font-size: 19px;
    }

    .privacy-block p, 
    .privacy-list li {
        font-size: 14.5px;
        line-height: 1.6;
        text-align: left;
    }
}