/* Global Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    height: 100vh;
    color: white;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: bold;
}

p {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #f0f0f0;
}

h1 span {
    color: #f1c40f; /* Accent color (yellow) */
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('topography.svg'); /* Pattern */
    background-size: cover;
    background-position: center;
    opacity: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 110, 73, 0.85); /* Bold green overlay */
}

.content {
    position: relative;
    text-align: center;
    z-index: 1;
}

/* Footer */
footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #ffffff;
    font-variant: small-caps;
}

/* Responsive Styles */
@media (max-width: 600px) {
    h1 {
        font-size: 2.2rem;
    }

    p {
        font-size: 1.2rem;
    }
}
