:root {
    --primary: #8FBC8F;
    /* Dark Sea Green */
    --accent: #2F4F2F;
    /* Dark Slate Gray */
    --text: #1C1C1C;
    --white: #ffffff;
    --light-bg: #f9fafb;
    --gray-bg: #e9ecef;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'EB Garamond', serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    font-size: 18px;
}

h1,
h2,
h3,
h4 {
    color: var(--accent);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    font-weight: 600;
    color: var(--accent);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero_bg.png');
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    color: var(--white);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    justify-content: flex-end;
    /* Align content to the right */
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 500px;
    /* Limit width for the form area */
    width: 100%;
    text-align: center;
}

.hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Form Container */
.hero-form-container {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    color: var(--text);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 4px solid var(--primary);
    /* Green border requested by user */
    text-align: left;
}

.arrow-wrapper {
    position: absolute;
    top: 40px;
    left: -160px;
    margin: 0;
    z-index: 20;
    pointer-events: none;
}

.arrow-right {
    display: inline-block;
    width: 180px;
    height: auto;
    filter: drop-shadow(2px 4px 6px black);
}

.hero-form-container h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.3rem;
}

.links-bar {
    background-color: var(--accent);
    padding: 1rem 0;
    text-align: center;
}

.link-item {
    color: var(--white);
    margin: 0 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.link-item:hover {
    color: var(--primary);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.alt-bg {
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-content .placeholder-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.image-content img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Feature List */
.feature-list ul {
    list-style: none;
    margin-top: 1rem;
}

.feature-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list i {
    color: var(--primary);
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    position: relative;
    border: 1px solid #eee;
}

.step-number {
    background: var(--primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

/* CTA Box */
.cta-box {
    background: var(--accent);
    color: var(--white);
    padding: 4rem;
    text-align: center;
    border-radius: 12px;
}

.cta-box h2 {
    color: var(--white);
}

.cta-box p {
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--accent);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 700;
    margin-top: 1.5rem;
}

.btn:hover {
    background: #7aa37a;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #888;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-col a {
    color: var(--primary);
}

.copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 2rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr;
    }

    header .container {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .container {
        justify-content: center;
    }

    .arrow-wrapper {
        display: none;
        /* Hide arrow on mobile to save space */
    }
}