/* Reset and base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #d9f4cd;
    color: #111;
    line-height: 1.8;
}

/* ----------------------------- */
/* Hero section with background image */
.hero {
    background-image: url('https://lh3.googleusercontent.com/sitesv/AAzXCkdYmkrpQwv2qupxaRkUaXFT7jFYUdWt5FA6iW4Omz3iz92dK5ms0Nk00o8eckuNYBNVEE0iXgvbob0oB_tIlUhHfxWl_W9tIeBaT5Dt-HhLHY6J7y3OlDBzvRvYE3nAhTmm8j6WBdvZD5ILdV4Ukug9MEQIM21jvfgZ8LKevtgbzbYRQfflc2FxEpM=w16383');
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 30px 20px; /* top 60px, bottom 30px */
    text-align: center;
    color: white;
}

.hero-logo {
    width: 200px;   /* fixed 200x200 logo */
    height: 200px;
    margin-bottom: 20px;
    display: block;
}

.hero h1 {
    font-size: 36px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* ----------------------------- */
/* White card */
.wrapper {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.card {
    background-color: #fff;
    max-width: 600px;
    width: 100%;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

/* Reduce space between hero and first paragraph */
.card p:first-of-type {
    margin-top: 10px; /* can be 0 if you want it very tight */
}

p {
    font-size: 20px;
    margin-bottom: 18px;
}

p.highlight {
    font-size: 22px;
    font-weight: bold;
    color: #145214;
}

a {
    color: #145214;
    text-decoration: underline;
    word-break: break-word;
}

/* ----------------------------- */
/* Footer */
.footer {
    text-align: center;
    background-color: #f5f5f5;
    padding: 25px 20px;
    font-size: 18px;
    color: #111;
    margin-top: 30px;
}

.footer a {
    color: #145214;
    text-decoration: underline;
}

/* Buttons (if needed) */
button, .button {
    background-color: #145214;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 20px;
    cursor: pointer;
    margin-top: 20px;
}

button:hover, .button:hover {
    background-color: #0f4010;
}

/* ----------------------------- */
/* Responsive adjustments */
@media (max-width: 480px) {
    .hero {
        padding: 50px 15px 25px; /* adjust bottom slightly for mobile */
    }

    .hero-logo {
        width: 150px;
        height: 150px;
        margin-bottom: 15px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .card {
        padding: 25px 15px;
    }

    p, .footer, a {
        font-size: 16px;
    }

    p.highlight {
        font-size: 20px;
    }

    .footer {
        padding: 20px 15px;
    }
}

@media (max-width: 360px) {
    .hero-logo {
        width: 120px;
        height: 120px;
        margin-bottom: 12px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .card {
        padding: 20px 12px;
    }

    p, .footer, a {
        font-size: 14px;
    }

    p.highlight {
        font-size: 18px;
    }

    .footer {
        padding: 15px 12px;
    }
}
