/* --- VARIABLES AND RESET --- */
:root {
    --logo-blue: #0073a5;
    --bg-light-blue: #F3FCFF;
}

body { 
    margin: 0; 
    font-family: Arial, sans-serif; 
    background-color: #FFFFFF; 
    color: #333;
}

/* --- TOP BAR --- */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background-color: #ffffff;
}

/* 1. Social Media Icons (Left) */
.top-socials {
    flex: 1;
    display: flex;
    gap: 10px;
}
.top-socials img {
    width: 30px !important;
    height: 30px;
}

/* 2. Contact Link (Centre - Above Logo) */
.top-center-link {
    flex: 1;
    display: flex;
    justify-content: center;
}
.top-center-link a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    color: var(--logo-blue);
    font-weight: bold;
    font-size: 11px;
}
.top-center-link img {
    width: 30px !important;
    height: auto;
    margin-bottom: 3px;
}

/* 3. Contact Details (Right) */
.top-contact {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}
.top-contact a { 
    color: var(--logo-blue); 
    text-decoration: none; 
    font-size: 13px; 
    font-weight: bold; 
}
.whatsapp-group { 
    display: flex; 
    align-items: center; 
    gap: 5px; 
    font-size: 13px; 
    font-weight: bold; 
}
.whatsapp-group img { 
    width: 20px !important; 
}

/* --- MAIN NAVIGATION (NAV) --- */
.main-nav { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    padding: 15px 0; 
    border-bottom: 1px solid #eee;
}
.nav-group { display: flex; gap: 30px; }
.nav-item { 
    text-align: center; 
    text-decoration: none; 
    color: #333; 
    font-size: 13px; 
}
.nav-item img { 
    width: 30px; 
    display: block; 
    margin: 0 auto 5px; 
}
.logo-center { margin: 0 40px; }
.logo-center img { width: 170px; }

/* --- CONTENT WRAPPER --- */
.content-wrapper { 
    max-width: 1100px; 
    margin: 30px auto; 
    text-align: center; 
    padding: 0 20px; 
}
.section-title-logo { 
    color: var(--logo-blue); 
    font-weight: bold; 
    text-transform: uppercase; 
    font-size: 18px !important; 
    margin-bottom: 10px; 
    letter-spacing: 1px; 
}
.centred-text { 
    margin-bottom: 40px; 
    color: #555; 
    font-size: 0.95rem; 
    line-height: 1.5;
}

/* --- HOW IT WORKS GRID --- */
.process-grid { 
    display: flex; 
    justify-content: space-between; 
    gap: 15px; 
}
.phase-block { width: 24%; text-align: left; }
.phase-img-square { 
    width: 100%; 
    aspect-ratio: 1/1; 
    object-fit: cover; 
}

/* --- ACCORDIONS --- */
.accordion-header { 
    background-color: var(--logo-blue); 
    color: white; 
    padding: 12px; 
    font-weight: bold; 
    font-size: 0.85rem; 
    margin-top: -5px; 
}
.accordion-body { 
    background-color: var(--bg-light-blue); 
    padding: 5px 0; 
}
.accordion-body summary { 
    list-style: none; 
    padding: 8px 12px; 
    cursor: pointer; 
    color: var(--logo-blue); 
    font-weight: bold; 
    font-size: 0.8rem; 
}
.accordion-body summary::before { content: "+ "; }
.accordion-body details[open] summary::before { content: "- "; }
.accordion-body p { 
    padding: 0 20px 10px 25px; 
    margin: 0; 
    font-size: 0.75rem; 
    color: #333; 
    line-height: 1.4;
}

/* --- SITE FOOTER --- */
.site-footer { 
    background-color: var(--bg-light-blue); 
    padding: 40px 20px; 
    margin-top: 50px; 
}
.footer-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    max-width: 1100px; 
    margin: 0 auto; 
}
.legal-links-left, .legal-links-right { 
    width: 30%; 
    font-size: 0.8rem; 
}
.legal-links-left a, .legal-links-right a { 
    text-decoration: none; 
    color: #333; 
}
.subscribe-section { width: 35%; text-align: center; }
.subscribe-section h3 {
    font-size: 14px !important;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--logo-blue);
}
.subscribe-box { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 10px; 
}
.subscribe-box input { 
    padding: 10px; 
    width: 220px; 
    border: 1px solid #ccc; 
    text-align: center; 
    font-size: 0.85rem; 
}
.btn-subscribe { 
    background: var(--logo-blue); 
    color: white; 
    padding: 10px; 
    border: none; 
    cursor: pointer; 
    font-weight: bold; 
    text-transform: uppercase; 
    width: 220px; 
    font-size: 0.85rem; 
}

.copyright { 
    text-align: center; 
    font-size: 0.75rem; 
    margin-top: 30px; 
    color: #666; 
}
