
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(to bottom, #f4f1e6, #ffffff);
    color: #111;
}

header {
    background: white;
    text-align: center;
    padding: 20px 10px;
}

nav {
    margin-top: 10px;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #6b7d3f;
    font-weight: bold;
}

.hero {
    position: relative;
    text-align: center;
}

.hero img {
    width: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.65);
    padding: 40px;
    max-width: 90%;
}

.hero-overlay h1 {
    font-size: 42px;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 20px;
}

.hero-overlay p {
    font-size: 18px;
    color: white;
    margin-bottom: 25px;
}

.button {
    background: #6b7d3f;
    color: white;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.section-divider {
    background: black;
    color: white;
    text-align: center;
    padding: 15px;
    letter-spacing: 3px;
}

.section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.split {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.split img {
    max-width: 100%;
    flex: 1;
}

.split div {
    flex: 1;
}

footer {
    text-align: center;
    padding: 30px;
    background: white;
    margin-top: 60px;
}
