:root {
    /* Colors */
    --color-primary: #0099d5;
    --color-primary-hover: #007fb0;
    --color-secondary: #f17f29;
    --color-secondary-hover: #d96a18;
    --color-tertiary: #4caf50;
    --color-tertiary-hover: #3d9540;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-hero-background: #ecfaff;
    --color-text-muted: #555555;
    --color-border: #cccccc;

    /* Spacing scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-24: 6rem;

    /* Typography scale */
    --fs-xs: 0.875rem;
    --fs-sm: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.5rem;
    --fs-4xl: 3rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    /* Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-pill: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
}
 
html {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

h3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #555555;
}

    h3::before {
        content: "";
        display: inline-block;
        width: 32px;
        height: 22px;
        background-image: url('../images/listitem.svg');
        background-size: contain;
        background-repeat: no-repeat;
    }


body {   margin:0; padding:0; }

header {
    background-color: var(--color-primary);
    font-size: 24px;
    box-shadow: 0 2px 20px #0003;
    position: relative; /* or absolute/fixed if needed */
    z-index: 10;
    position: sticky;
    top: 0;
    z-index: 1000; /* ensure it stays above content */
}


.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px 12px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer {
    position: relative; /* or absolute/fixed if needed */
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-3) var(--space-6);
}

footer .logo {
    padding: 0;
    height: 50px; /* keeps logo size consistent */
}

/* Skip link for keyboard users */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.75rem 1rem;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 0.5rem 0;
}
.skip-link:focus {
    top: 0;
}

/* Global focus state for keyboard navigation */
:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Footer navigation (replaces old links-table) */
.footer-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    margin: var(--space-8) 0;
    width: 100%;
}

.footer-col h3.footer-heading {
    font-size: 1rem;
    font-weight: bold;
    color: var(--color-black);
    margin: 0 0 0.75rem 0;
    display: block;
}
.footer-col h3.footer-heading::before {
    display: none;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    line-height: 2;
    padding: 0;
}

.footer-col a {
    text-decoration: none;
    color: var(--color-black);
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-link {
    color: var(--color-black);
    text-decoration: none;
    font-size: 0.9rem;
}
.footer-bottom-link:hover {
    color: var(--color-primary);
}

.footer-copyright {
    font-size: 0.9rem;
    color: #555555;
}

/* Hamburger menu toggle (hidden on desktop; expanded in mobile breakpoint) */
.nav-toggle {
    display: none;
}
.hamburger {
    display: none;
}



.header-inner > a {
  
}

header .logo {
    padding: 0;
    height: 35px; /* keeps logo size consistent */
}



.button {
    border: 1px solid transparent;
    text-decoration: none;
    display: inline-block;
    padding: .75rem 1.5rem;
    border-radius: 2rem;
    font-size: 18px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.button-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.button-secondary {
    background: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
}

.button-tertiary {
    background: var(--color-tertiary);
    color: var(--color-white);
    border-color: var(--color-tertiary);
}

.button-white {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.button-primary:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
}

.button-secondary:hover {
    background-color: var(--color-secondary-hover);
    border-color: var(--color-secondary-hover);
}

.button-tertiary:hover {
    background-color: var(--color-tertiary-hover);
    border-color: var(--color-tertiary-hover);
}

.button-white:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}


main {
    font-size: var(--fs-md);
    color: var(--color-black);
    line-height: 1.6;
}

h1 {
    font-size: var(--fs-4xl);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

h2 {
    font-size: var(--fs-2xl);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.005em;
}


.stats-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left; /* align all text left */
    margin: 2rem 0;
}

    .stats-table th,
    .stats-table td {
        border: none; /* remove borders */
        padding: 0.1rem 0; /* vertical spacing */
    }

    .stats-table th {
        font-size: 1.5rem;
        font-weight: normal;
        color: var(--color-tertiary);
       
        
    }

    .stats-table td {
        font-size: 1.0rem;
        font-weight: 500;
    }


.accordion-item {
    padding-right: 42%;
}

.accordion-item input {
    display: none;
    
}

.accordion-title {
    display: block;
    color: white;
    cursor: pointer;
    border-bottom: 2px solid #CCCCCC;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item input:checked ~ .accordion-content {
    max-height: 500px;
}

.accordion-text {
    padding-left: 30px;
    padding-top:8px;
}

.accordion-image img {
    width: 480px;
   
    object-fit: cover;
    border-radius: 1.5rem;
}

.accordion{
    position: relative;
}

.accordion-image {
    position: absolute;
    right: 0;
    top: 0;
    
    
    opacity: 0;
    z-index: 1;
    transition: opacity 0.4s ease, z-index 0s linear 0.4s;
}



.accordion-item input:checked ~ .accordion-content .accordion-image {
    opacity: 1;
    z-index: 10;
    transition: opacity 0.4s ease, z-index 0s;
    
}

/* Default collapsed style */
.accordion-title h3 {
    color: #ccc; /* light gray for inactive titles */
    transition: color 0.3s;
}

    .accordion-title  h3::before {
        opacity: 0.1;
    }


/* Active (checked) item overrides */
.accordion-item input:checked ~ .accordion-title h3 {
    color: black;
}

    .accordion-item input:checked ~ .accordion-title h3::before {
        opacity: 1;
    }

.team-image {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    display: inline-block;
    border: 1px solid var(--color-border);
    padding: 2px;
    box-sizing: border-box;
}

/* ============================================================
   Tablet (max-width: 1023px)
   ============================================================ */
@media (max-width: 1023px) {
    h1 {
        font-size: var(--fs-3xl);
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   Mobile (max-width: 767px)
   ============================================================ */
@media (max-width: 767px) {
    h1 {
        font-size: var(--fs-2xl);
        line-height: 1.2;
    }

    h2 {
        font-size: var(--fs-xl);
    }

    main {
        font-size: var(--fs-sm);
    }

    .header-inner {
        padding: var(--space-3) var(--space-4);
        flex-wrap: wrap;
    }

    header .logo {
        height: 28px;
    }

    .header-cta {
        display: none;
    }

    /* Hamburger toggle visible */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 22px;
        cursor: pointer;
        padding: 0;
        margin-left: auto;
    }
    .hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        background: var(--color-white);
        border-radius: 2px;
        transition: transform var(--transition-fast), opacity var(--transition-fast);
    }
    .nav-toggle:checked ~ .hamburger span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .nav-toggle:checked ~ .hamburger span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle:checked ~ .hamburger span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-2);
    }
}

/* Visually hide input (still keyboard accessible) */
.nav-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}