
body {
    font-family: 'Georgia', serif;
    margin: 0;
    background: #f4f3ef;
    color: #333;
}

header {
    position: relative;
    background-color: #1a3b2d;
    color: white;
    padding: 4rem 2rem 4rem 6rem;
    text-align: center;
}

header img.logo {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 120px;
    height: auto;
}

header h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.cta {
    display: inline-block;
    background: #b88c28;
    color: white;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background 0.3s ease;
}

.cta:hover {
    background: #a57c1f;
}

main {
    padding: 2rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    justify-items: center;
}

.card {
    background: #eef2eb;
    border-radius: 1rem;
    padding: 2rem;
    width: 270px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.card h2 {
    margin-top: 0;
    font-size: 1.25rem;
    color: #1a3b2d;
}

.card p {
    font-size: 0.95rem;
    color: #444;
}

.card a {
    display: inline-block;
    margin-top: 1.2rem;
    color: white;
    background: #1a3b2d;
    padding: 0.5rem 1.25rem;
    border-radius: 0.4rem;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.card a:hover {
    background: #153024;
}

footer {
    background: #1a3b2d;
    color: white;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
}

footer .attribution {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #ccc;
}

.disclaimer {
    font-size: 0.8rem;
    font-weight: normal;
    color: #555;
}

header img.logo {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 120px;
    height: auto;
    background-color: #f4f3ef; /* light beige background */
    padding: 0.5rem;
    border-radius: 8px;
}

.learn-more-button {
    margin-top: auto;
    align-self: center;
    background-color: #153d2e;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
  }
  
.learn-more-button:hover {
    background-color: #0f2b21;
  }