/* --- VARIABLES AND RESET --- */
:root {
    --logo-blue: #0073a5; /* ACCESSIBLE BLUE FOR WAVE COMPLIANCE */
    --bg-light-blue: #F3FCFF;
}

body { 
    margin: 0; 
    font-family: Arial, sans-serif; 
    background-color: #FFFFFF; 
    color: #333;
}

/* --- TITLES --- */
.section-title-logo { 
    color: var(--logo-blue); 
    font-weight: bold; 
    text-transform: uppercase; 
    font-size: 18px !important; 
    margin-bottom: 10px; 
    letter-spacing: 1px; 
    text-align: center;
}

/* GLOBAL h2 STYLING (FOR FOOTER AND ACCORDIONS) */
h2 {
    color: var(--logo-blue) !important;
    font-size: 16px !important; 
    text-transform: uppercase;
    margin: 0;
    font-weight: bold;
}

.centred-text { 
    text-align: center;
    margin-bottom: 40px; 
    color: #555; 
    font-size: 0.95rem; 
    line-height: 1.5;
}

/* --- DESTINATIONS GRID --- */
.process-grid { 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

/* --- CONTINENT CARDS --- */
.continent-card { 
    width: 320px; 
    background-color: #ffffff;
    border-radius: 0; 
    overflow: hidden; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

/* ACCORDION HEADER (NOW MAPPED TO h2 IN HTML) */
.accordion-header { 
    background-color: var(--logo-blue) !important; 
    color: white !important; 
    padding: 15px !important; 
    font-weight: bold !important; 
    font-size: 16px !important; 
    text-align: center !important; 
    text-transform: uppercase; 
}

/* ACCORDION BODY */
.accordion-body { 
    background-color: var(--bg-light-blue) !important; 
    padding: 15px; 
    flex-grow: 1; 
    text-align: left;
}

.accordion-body details {
    margin-bottom: 5px;
}

.accordion-body summary { 
    list-style: none; 
    padding: 8px 0; 
    cursor: pointer; 
    color: var(--logo-blue); 
    font-weight: bold; 
    font-size: 14px; 
}

.accordion-body summary::before { content: "+ "; }
.accordion-body details[open] summary::before { content: "- "; }

.accordion-body p { 
    padding: 5px 0 10px 15px; 
    margin: 0; 
    font-size: 13px; 
    color: #333; 
    line-height: 1.4;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 800px) {
    .process-grid {
        flex-direction: column;
        align-items: center;
    }
    .continent-card {
        width: 90%;
    }
}
