:root {
    --navy: #0b2f57;
    --border: #193a66;
    --activeBorder: #00c6c2;
    --radius: 14px;
    --shadow: 0 8px 24px rgba(12, 31, 53, 0.08);
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Roboto, sans-serif;
    background: var(--bg);
    color: var(--ink);
}

/* Top band */
.hero-band {
    background: var(--navy);
    padding: 42px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-band h1 {
    margin: 0;
    text-align: center;
    color: #fff;
    letter-spacing: 0.42em;
    font-family: Gilroy, sans-serif;
    font-weight: 400;
    font-size: clamp(18px, 2.2vw, 30px);
    text-transform: uppercase;
}

/* Section */
.section {
    padding: 20px 20px;
    height: 65vh;
}

.container {
    /* max-width: var(--max);
    margin: 0 auto; */
 display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}


.section-title {
    text-align: center;
    font-size: clamp(30px, 3.1vw, 40px);
    margin: 0 0 44px;
    font-weight: 700;
    font-family: Gilroy, sans-serif;
    color: #0a2a4d;
}


.grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    /* height: 70vh; */
}

/*Same card size as website */
.card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;

    /* IMPORTANT: set base color so svg/text use currentColor */
    color: var(--navy);

    background: #fff;
    border: 1.5px solid rgba(25, 58, 102, 0.65);
    border-radius: var(--radius);

    width: 260px;
    padding: 18px;

    transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}


.card-inner {
    text-align: center;
    width: 100%;
}

/* svg color change on hover */
.card {
    color: var(--navy);
}

.card:hover {
    color: #fff;
}

.card svg path {
    fill: currentColor !important;
    stroke: currentColor !important;
}


/* PDF icon sizing like website */
.pdf-icon {
    width: 92px;
    height: 92px;
    display: block;
    margin: 0 auto 18px;
}

/*  Typography like website */
.card-title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: currentColor;
    /* uses card color */
}

.card-year {
    margin: 10px 0 0;
    font-size: 15px;
    font-weight: 600;
    color: currentColor;
    /* uses card color */
    opacity: .95;
}

/* Hover state: background navy, everything turns white via currentColor */
.card:hover {
    background: var(--navy);
    color: #fff;
    /* <-- svg + text become white */
    border-color: var(--activeBorder);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

/* Active state like first tile in your screenshot */
.card.is-active {
    background: var(--navy);
    color: #fff;
    border-color: var(--activeBorder);
}


/* Responsive */
@media (max-width: 1100px) {
    .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* for setup footer better view */
    .section {
        height: auto;
    }
}

@media (max-width: 767px) {

    /* for setup footer better view */
    .section {
        height: auto;
    }
}

@media (max-width: 560px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

/* Media query for XL screens */
@media (min-width: 1200px) {
    .grid {
        align-items: center;
        justify-content: center;
        display: flex;
    }
}