* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #18332e;
    background: #f6f3ec;
}

a {
    color: inherit;
    text-decoration: none;
}

.hero {
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    position: relative;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(8, 38, 34, 0.76), rgba(8, 38, 34, 0.22)),
        url("images/imagaenfilipinas1.webp") center / cover no-repeat;
}

.navbar {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 22px;
    font-size: 15px;
    font-weight: 700;
}

.nav-links a {
    opacity: 0.9;
}

.nav-links a:hover {
    opacity: 1;
}

.hero-content {
    width: min(1120px, calc(100% - 40px));
    margin: auto;
    padding: 80px 0 120px;
}

.eyebrow {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffd166;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 720px;
    margin-bottom: 20px;
    font-size: clamp(44px, 7vw, 86px);
    line-height: 0.98;
}

.hero-content p:not(.eyebrow) {
    max-width: 590px;
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1.6;
}

.button {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 6px;
    color: #12302b;
    background: #ffd166;
    font-weight: 800;
}

main {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 70px 0;
}

.intro {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
    align-items: end;
    margin-bottom: 42px;
}

.intro h2 {
    margin-bottom: 0;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
}

.intro > p {
    margin-bottom: 0;
    color: #52615b;
    font-size: 18px;
    line-height: 1.7;
}

.cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.card {
    overflow: hidden;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 55px rgba(31, 50, 45, 0.13);
}

.card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.card-content {
    padding: 28px;
}

.card-content span {
    display: block;
    margin-bottom: 10px;
    color: #0f8b8d;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.card-content h3 {
    margin-bottom: 12px;
    font-size: 28px;
}

.card-content p {
    margin-bottom: 0;
    color: #596a64;
    line-height: 1.65;
}

.highlights {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.highlights div {
    padding: 24px;
    border: 1px solid rgba(24, 51, 46, 0.12);
    border-radius: 8px;
    background: #fffaf0;
}

.highlights strong {
    display: block;
    margin-bottom: 6px;
    color: #0f6f73;
    font-size: 28px;
}

.highlights span {
    color: #596a64;
}

@media (max-width: 760px) {
    .navbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 14px;
    }

    .hero {
        min-height: 780px;
        background:
            linear-gradient(180deg, rgba(8, 38, 34, 0.78), rgba(8, 38, 34, 0.28)),
            url("images/imagaenfilipinas1.webp") center / cover no-repeat;
    }

    .hero-content {
        padding-bottom: 80px;
    }

    .hero-content p:not(.eyebrow) {
        font-size: 18px;
    }

    main {
        padding: 52px 0;
    }

    .intro,
    .cards,
    .highlights {
        grid-template-columns: 1fr;
    }

    .intro {
        gap: 18px;
    }
}
