/* --- Base Styles --- */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #c1e3e3; /* Soft background color */
    color: #333; /* Default text color */
}

.wrapper-main {
    max-width: 960px;
    margin: 115px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
}

h2.section-title {
    font-size: 1.75rem;
    font-weight: bold;
    color: #2e3b4e;
    margin-top: 40px;
    margin-bottom: 15px;
}

p.description {
    font-size: 1rem;
    color: #495057;
    line-height: 1.6;
}

.text-justify {
    text-align: justify;
}

/* Last Updated Date */
.last-updated {
    font-size: 1rem;
    color: #6c757d;
    text-align: left;
    margin-bottom: 25px;
    font-weight: bold;
}

.last-updated #year {
    font-weight: bold;
    color: #000;
}

/* --- Lists (Ordered and Unordered) --- */
.policy-list {
    list-style-position: inside;
    padding-left: 20px;
    margin-top: 10px;
}

.policy-list li {
    margin-bottom: 8px;
}

ul.policy-list {
    padding-left: 25px;
}

ol.policy-list {
    padding-left: 40px;
}

/* --- Buttons and Alerts --- */
.sweet-alert-btn {
    background-color: #28a745; /* Green for success */
    border: none;
    color: white;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.sweet-alert-btn:hover {
    background-color: #218838;
}

/* --- Responsive Styles --- */
@media (max-width: 768px) {
    .wrapper-main {
        margin: 20px 15px;
        padding: 20px;
    }

    h1 {
        font-size: 2rem;
    }

    h2.section-title {
        font-size: 1.5rem;
    }

    p.description {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .wrapper-main {
        padding: 15px;
        margin: 15px 10px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2.section-title {
        font-size: 1.3rem;
    }

    p.description {
        font-size: 0.9rem;
    }

    ul.policy-list li, ol.policy-list li {
        font-size: 0.9rem;
    }
}

/* --- Links --- */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* --- Footer Styles --- */
footer {
    background-color: #2e3b4e;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
    font-size: 1rem;
}

footer a {
    color: #f1f1f1;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
