body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f5f6f7;
    color: #1a1a1a;
}

/* 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-size: 16px;
    font-weight: bold;
    line-height: 1.3;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

/* HERO */
.hero {
    position: relative;
    width: 100%;
    height: 300px;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 30px;
    left: 20px;
    background: rgba(255,255,255,0.85);
    padding: 22px;
    width: auto;
    max-width: 350px;
    border-radius: 12px;
}

.hero-overlay h1 {
    margin: 0 0 8px;
}

/* NEWS SECTION */
.news-section {
    margin-top: 80px;
    padding: 20px;
}

.news-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.news-card {
    background: white;
    border-radius: 14px;
    display: flex;
    padding: 12px;
    width: calc(50% - 10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.news-card img {
    width: 135px;
    height: 110px;
    border-radius: 10px;
    object-fit: cover;
}

.news-content {
    padding-left: 14px;
}

/* GALLERY */
.gallery-section {
    padding: 10px 20px 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
}

.gallery-grid img {
    width: 100%;
    height: 140px;
    border-radius: 10px;
    object-fit: cover;
}

/* FOOTER */
footer {
    background: #0f2b4d;
    padding: 40px;
    color: white;
    text-align: center;
}

/* ========================= */
/* RESPONSIVE BREAKPOINTS */
/* ========================= */

/* TABLET */
@media (max-width: 900px) {
    .hero {
        height: 240px;
    }

    .hero-overlay {
        bottom: 20px;
        left: 15px;
        max-width: 300px;
        padding: 18px;
    }

    .news-container {
        flex-direction: column;
    }

    .news-card {
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links {
        justify-content: center;
        gap: 15px;
    }
}

/* MOBILE */
@media (max-width: 600px) {

    .header {
        justify-content: center;
        text-align: center;
    }

    .hero {
        height: 200px;
    }

    .hero-overlay {
        left: 50%;
        bottom: 10px;
        transform: translateX(-50%);
        width: 85%;
        padding: 16px;
        text-align: center;
    }

    .hero-overlay h1 {
        font-size: 20px;
    }

    .news-section {
        margin-top: 60px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .news-card {
        flex-direction: column;
        text-align: center;
    }

    .news-card img {
        width: 100%;
        height: 180px;
    }

    .news-content {
        padding-left: 0;
        margin-top: 10px;
    }

    footer {
        padding: 25px;
        font-size: 14px;
    }
}
