/* contactus.css */

/* --- LAYOUT & CONTAINER --- */

[data-page="contactus"] .container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 900px;
    padding-top: 2rem;
}

/* --- THE FIX: FORCED ARIAL OVERRIDES --- */

/* The selectors below target the specific desktop elements defined in style.css.
   By adding [data-page="contactus"] and !important, we force Arial 
   only on this page, overriding the Bebas Neue global setting.
*/
[data-page="contactus"] .contact-info,
[data-page="contactus"] .contact-info div,
[data-page="contactus"] .contact-detail,
[data-page="contactus"] .contact-detail p,
[data-page="contactus"] .contact-detail h2,
[data-page="contactus"] h1 {
    font-family: Arial, Helvetica, sans-serif !important;
}

/* --- LEFT SIDE: CONTACT INFO STYLING --- */

[data-page="contactus"] h1 {
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

[data-page="contactus"] .contact-detail h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    margin-top: 2rem;
}

[data-page="contactus"] .contact-detail p {
    font-size: 1.2rem;
    line-height: 1.8;
}

[data-page="contactus"] .green-text {
    color: #0DA960;
    font-weight: bold;
}

/* --- RIGHT SIDE: INFO BLOCKS --- */

[data-page="contactus"] .info-blocks {
    margin-left: auto;
}

[data-page="contactus"] .info-box {
    border: 5px solid black;
    border-radius: 0px;
    margin-bottom: 2rem;
    max-width: 400px;
}

[data-page="contactus"] .info-header {
    background-color: #0D904F;
    color: white;
    padding: 1.2rem;
    font-size: 1.5rem;
    text-align: center;
}

[data-page="contactus"] .info-content ul {
    list-style-type: none;
}

[data-page="contactus"] .info-content li {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.2rem;
    padding-left: 1rem;
}

[data-page="contactus"] .info-content li a {
    text-decoration: none;
    color: inherit;
}

[data-page="contactus"] .info-content li a:hover {
    text-decoration: underline;
}

/* --- RESPONSIVE DESIGN --- */

@media (max-width: 768px) {
    [data-page="contactus"] h1 {
        font-size: 2rem;
    }

    [data-page="contactus"] .contact-detail p {
        font-size: 1rem;
    }

    [data-page="contactus"] .info-content li {
        font-size: 1rem;
    }

    [data-page="contactus"] .container {
        flex-direction: column;
        align-items: center;
    }

    [data-page="contactus"] .info-blocks {
        margin-left: 0;
    }
}