body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f8f8f8;
    line-height: 1.6;
}

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

header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #2c7a4d;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #2c7a4d;
}

main {
    padding-top: 60px; /* Adjust if header height changes */
}

.hero {
    background-color: #e8f5e9; /* Light mint */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #1b5e20;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #2c7a4d;
    color: #ffffff;
    border-color: #2c7a4d;
}

.btn-primary:hover {
    background-color: #1b5e20;
    border-color: #1b5e20;
}

.btn-secondary {
    background-color: transparent;
    color: #2c7a4d;
    border-color: #2c7a4d;
}

.btn-secondary:hover {
    background-color: #e8f5e9;
    color: #1b5e20;
}

.services-section, .how-it-works-section, .about-section, .contact-section, .cta-final {
    padding: 60px 0;
}

.services-section h2, .how-it-works-section h2, .about-section h2, .contact-section h1, .cta-final h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    color: #1b5e20;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #2c7a4d;
}

.service-card p {
    font-size: 0.95em;
    color: #555;
}

.how-it-works-section h2 {
    margin-bottom: 50px;
}

.steps-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    max-width: 300px;
}

.step-number {
    font-size: 3em;
    font-weight: bold;
    color: #a5d6a7; /* Lighter green */
    margin-bottom: 15px;
}

.step h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #2c7a4d;
}

.step p {
    font-size: 0.95em;
    color: #555;
}

.about-section {
    background-color: #ffffff;
}

.about-section p {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-final {
    background-color: #fff9c4; /* Warm yellow highlight */
    text-align: center;
}

.cta-final h2 {
    font-size: 2.8em;
    color: #1b5e20;
}

.cta-final p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final .btn-primary {
    background-color: #1b5e20;
    border-color: #1b5e20;
}

.cta-final .btn-primary:hover {
    background-color: #2c7a4d;
    border-color: #2c7a4d;
}

.contact-section {
    background-color: #ffffff;
}

.contact-section h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 3em;
    color: #1b5e20;
}

.contact-section p {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
    font-size: 1.1em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-form, .contact-info {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.contact-form h2, .contact-info h2 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.8em;
    color: #2c7a4d;
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1em;
}

.form-group textarea {
    resize: vertical;
}

.contact-info p {
    margin-bottom: 15px;
    color: #555;
    font-size: 1.05em;
    text-align: left;
}

.contact-info p a {
    color: #2c7a4d;
    text-decoration: none;
}

.contact-info p a:hover {
    text-decoration: underline;
}

footer {
    background-color: #2c7a4d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 0.9em;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.footer-nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #a5d6a7;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin: 5px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    nav ul {
        margin-top: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }
    nav ul li {
        margin: 5px 15px;
    }
    .hero h1 {
        font-size: 2.8em;
    }
    .hero p {
        font-size: 1.1em;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    .contact-wrapper {
        flex-direction: column;
    }
    footer .container {
        flex-direction: column;
        text-align: center;
    }
    .footer-nav ul {
        justify-content: center;
        margin-bottom: 15px;
    }
    .footer-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5em;
    }
    nav ul li a {
        font-size: 0.9em;
    }
    .hero h1 {
        font-size: 2.3em;
    }
    .hero p {
        font-size: 1em;
    }
    .btn {
        padding: 12px 25px;
        font-size: 0.9em;
    }
    .services-section h2, .how-it-works-section h2, .about-section h2, .contact-section h1, .cta-final h2 {
        font-size: 2em;
    }
    .service-card, .contact-form, .contact-info {
        padding: 20px;
    }
    .contact-form h2, .contact-info h2 {
        font-size: 1.5em;
    }
}