* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jost', sans-serif;
    background: #b7d318;
    color: #181E00;
    line-height: 1.5;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

/* =========================
   HERO SECTION
========================= */
.hero {
    padding: 80px 0 90px;
    text-align: center;
}

/* Logo Card */
.logo-card {
    width: 100%;
    max-width: 390px;
    margin: 0 auto 50px;
    background: #ffffff;
    border-radius: 14px;
    padding: 20px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.logo-card img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

/* Intro Text */
.intro-text {
    max-width: 900px;
    margin: 0 auto 80px;
}

.intro-text p {
    color: #181E00;
    font-size: 35px;
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

/* =========================
   CATEGORY CARDS
========================= */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.category-card {
    position: relative;
    height: 360px;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

/* Dummy images - replace later */
.card-home {
    background-image:
       linear-gradient(rgb(0 0 0 / 45%), rgb(0 0 0 / 35%)), url(../images/home-img.png);
}

.card-office {
    background-image:
         linear-gradient(rgb(0 0 0 / 45%), rgb(0 0 0 / 35%)), url(../images/office-img.png);
}

.card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    color: #ffffff;
}

/* Icon Image */
.icon-image {
    width: 72px;
    height: 72px;
    margin-bottom: 22px;
    display: block;
}

/* Title */
.card-content h3 {
    font-size: 36px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 14px;
}

/* Description */
.card-content p {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 28px;
    max-width: 520px;
}

/* Button */
.card-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d7f03c;
    font-size: 20px;
    font-weight: 400;
}

.card-button span {
    font-size: 24px;
}

/* =========================
   FOOTER
========================= */
.site-footer {
    background: #181E00;
    padding: 60px 0;
    margin-top: 0px;
    border-bottom: 12px solid #B7D318;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.footer-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 18px;
}

.footer-line {
    width: 70px;
    height: 4px;
    background: #B7D318;
    border-radius: 2px;
    margin-bottom: 28px;
}

.footer-text {
    color: rgba(255,255,255,0.70);
    font-size: 21px;
    font-weight: 300;
    max-width: 460px;
    margin-bottom: 28px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 14px;
    margin-bottom: 30px;
}

.social-icons a {
    width: 48px;
    height: 48px;
    border: 1px solid #404C00;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons img {
    width: 20px;
    height: 20px;
}

.copyright {
    color: rgb(255 255 255 / 57%);
    font-size: 20px;
    font-weight: 300;
}

/* Contact */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: rgba(255,255,255,0.80);
    font-size: 22px;
    line-height: 1.6;
}

.contact-item img {
    width: 22px;
    height: 22px;
    margin-top: 4px;
    flex-shrink: 0;
    object-fit: contain;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
    .intro-text p {
        font-size: 44px;
    }

    .card-content h3 {
        font-size: 46px;
    }

    .card-content p {
        font-size: 22px;
    }

    .footer-title {
        font-size: 34px;
    }
}

@media (max-width: 991px) {
    .hero {
        padding: 60px 0 70px;
    }

    .logo-card {
        margin-bottom: 45px;
    }

    .intro-text {
        margin-bottom: 60px;
    }

    .intro-text p {
        font-size: 34px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
    }

    .category-card {
        height: 340px;
    }

    .card-content h3 {
        font-size: 42px;
    }

    .card-content p {
        font-size: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-title {
        font-size: 30px;
    }

    .footer-text,
    .contact-item,
    .copyright {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 40px 0 50px;
    }

    .logo-card {
        max-width: 300px;
        padding: 20px 24px;
        margin-bottom: 35px;
    }

    .intro-text {
        margin-bottom: 45px;
    }

    .intro-text p {
        font-size: 20px;
        line-height: 1.35;
        letter-spacing: 0;
    }

    .cards-grid {
        gap: 18px;
    }

    .category-card {
        height: 260px;
    }

    .icon-image {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    .card-content h3 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .card-content p {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .card-button {
        font-size: 15px;
    }

    .card-button span {
        font-size: 18px;
    }

    .site-footer {
        margin-top: 0px;
        padding: 50px 0;
    }

    .footer-title {
        font-size: 24px;
    }

    .footer-line {
        width: 50px;
        height: 3px;
    }

    .footer-text,
    .contact-item,
    .copyright {
        font-size: 15px;
    }

    .social-icons a {
        width: 42px;
        height: 42px;
    }

    .social-icons img {
        width: 18px;
        height: 18px;
    }

    .contact-item img {
        width: 18px;
        height: 18px;
    }
}