:root {
    --primary-green: #2E5939;
    --slate-gray: #3C3C3C;
    --soft-gold: #E3C565;
    --light-sky-blue: #4A90E2;
    --light-gray: #F9F9F9;
    --deep-green: #1C3A26;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--slate-gray);
    background-color: var(--white);
}

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

/* --- Fixed Header --- */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.header-logo img:hover {
    transform: scale(1.05);
}

/* --- Hero Section --- */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 180px 0 100px 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 1.1;
    margin: 0 0 24px 0;
    text-transform: capitalize;
}

.hero-subheadline {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 32px 0;
    max-width: 500px;
}

/* --- CTA Buttons --- */
.cta-button {
    display: inline-block;
    background-color: var(--soft-gold);
    color: var(--primary-green);
    padding: 14px 36px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--light-sky-blue);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.cta-button-large {
    display: inline-block;
    background-color: var(--soft-gold);
    color: var(--primary-green);
    padding: 18px 48px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background-color: var(--light-sky-blue);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* --- General Section Styling --- */
main section {
    padding: 80px 0;
}

main section:nth-child(even) {
    background-color: var(--light-gray);
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--slate-gray);
}

/* --- Services Section --- */
.services {
    background-color: var(--light-gray);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    text-align: center;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--slate-gray);
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-gray);
}

/* --- Why Us Section --- */
.why-us {
    background-color: var(--white);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.benefit-card {
    text-align: center;
}

.benefit-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--slate-gray);
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-gray);
}

/* --- How It Works Section --- */
.how-it-works {
    background-color: var(--light-gray);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    text-align: center;
}

.step-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--slate-gray);
}

.step-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-gray);
}

/* --- CTA Banner --- */
.cta-banner {
    background-color: var(--deep-green);
    text-align: center;
    padding: 60px 0;
}

/* --- Contact Section --- */
.contact {
    background-color: var(--white);
    text-align: center;
}

.section-intro {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: var(--slate-gray);
}

form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* --- Footer --- */
footer {
    background-color: var(--deep-green);
    color: var(--white);
    text-align: center;
    padding: 40px 0;
}

footer p {
    margin: 8px 0;
    font-size: 14px;
}

footer a {
    color: var(--soft-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--white);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .container,
    .header-container,
    .hero-content {
        padding: 0 20px;
    }

    .hero-headline {
        font-size: 36px;
    }

    .hero-subheadline {
        font-size: 16px;
    }

    .service-grid,
    .benefit-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    h2 {
        font-size: 28px;
    }

    main section {
        padding: 60px 0;
    }
}
