body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

/* HEADER */
.header {
    background: #0B2545;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.3;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 15px;
}

/* HERO */
.hero {
    height: 250px;
    background: url("../images/background.jpg") center/cover no-repeat;
}

/* MANIFESTO BANNER */
.manifesto-banner {
    background: rgba(255, 255, 255, 0.88);
    width: 85%;
    max-width: 700px;
    margin: -80px auto 20px;
    text-align: center;
    padding: 25px 18px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.download-btn {
    margin-top: 18px;
    padding: 12px 18px;
    background: #0B2545;
    color: white;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

/* MAIN CONTENT */
.content-area {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px 40px;
    flex-wrap: wrap;
}

/* PILLARS */
.pillars {
    width: 100%;
    max-width: 580px;
}

.pillar-card {
    background: white;
    display: flex;
    align-items: center;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pillar-card img {
    width: 45px;
    margin-right: 15px;
}

/* PROGRESS BOX */
.progress-box {
    background: white;
    width: 100%;
    max-width: 380px;
    padding: 22px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.subtitle {
    font-size: 14px;
    color: #444;
    margin-bottom: 12px;
}

.progress-bar {
    height: 10px;
    width: 100%;
    background: #d9e2f2;
    border-radius: 5px;
    position: relative;
    margin-bottom: 10px;
}

.progress-bar .fill {
    background: #1D75DE;
    height: 100%;
    border-radius: 5px;
}

.percent {
    font-size: 14px;
    font-weight: bold;
    color: #0B2545;
    margin-left: 8px;
}

.progress-details {
    margin-top: 18px;
    font-size: 14px;
}

.last-updated {
    font-size: 12px;
    color: #777;
    margin-top: 18px;
}

/* FOOTER */
.footer {
    background: #0B2545;
    color: white;
    padding: 30px 40px;
    margin-top: 40px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.social {
    margin-top: 20px;
    font-size: 20px;
}

/* =============================== */
/* RESPONSIVE BREAKPOINTS */
/* =============================== */

@media (max-width: 900px) {
    .content-area {
        padding: 20px;
    }

    .manifesto-banner {
        width: 92%;
    }

    .header {
        justify-content: center;
        text-align: center;
    }

    .nav-links {
        justify-content: center;
        gap: 14px;
    }
}

@media (max-width: 600px) {

    .hero {
        height: 180px;
    }

    .manifesto-banner {
        margin-top: -60px;
        padding: 20px;
    }

    .pillar-card {
        padding: 12px;
    }

    .progress-box {
        padding: 18px;
    }

    .footer-columns {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
