body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #faf8f1;
    color: #333;
    line-height: 1.7;
}

header {
    background: white;
    text-align: center;
    padding: 35px 20px 25px;
}

header h1 {
    font-family: Georgia, serif;
    color: #0d3b23;
    font-size: 42px;
    margin: 0;
}

header p {
    font-size: 18px;
    color: #555;
}


nav {
    background: #0d3b23;
    text-align: center;
    padding: 15px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 18px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}


.hero {
    position: relative;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
}


.hero-text {
    position: absolute;
    left: 40px;
    bottom: 40px;
    max-width: 500px;
    background: rgba(0,0,0,0.55);
    color: white;
    padding: 25px;
}

.hero-text h1 {
    font-family: Georgia, serif;
    font-size: 48px;
    margin: 0 0 10px;
}

.hero-text p {
    font-size: 20px;
    margin: 0;
}


section {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 25px;
}

h2 {
    font-family: Georgia, serif;
    color: #0d3b23;
    font-size: 32px;
    border-bottom: 2px solid #d8c89a;
    padding-bottom: 8px;
}


footer {
    background:#0d3b23;
    color:white;
    text-align:center;
    padding:20px;
}

.contact-button {

    display:inline-block;
    margin-top:20px;
    padding:14px 30px;

    background:#0d3b23;
    color:white;

    text-decoration:none;
    font-weight:bold;

    border-radius:6px;
}

.contact-button:hover {

    background:#1d5d38;

}

html {
    scroll-behavior: smooth;
}

/* ===========================
   Resources
=========================== */

.section-intro{
    max-width:900px;
    margin:0 auto 40px;
    text-align:center;
    line-height:1.7;
}

.resource-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
    margin-top:35px;
}

.resource-card{
    background:#ffffff;
    border-radius:14px;
    padding:25px;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
    transition:.25s;
    border-top:5px solid #2e6b3f;
}

.resource-card:hover{
    transform:translateY(-6px);
    box-shadow:0 8px 22px rgba(0,0,0,.15);
}

.resource-card h3{
    color:#2e6b3f;
    margin-bottom:12px;
}

.resource-card p{
    margin-bottom:15px;
    color:#555;
}

.resource-card ul{
    padding-left:20px;
}

.resource-card li{
    margin-bottom:8px;
}

.resource-card a{
    color:#1f5d37;
    text-decoration:none;
    font-weight:600;
}

.resource-card a:hover{
    text-decoration:underline;
}