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

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

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c5f2d;
}

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

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

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

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

main {
    padding-top: 60px; /* Space for sticky header */
}

section {
    padding: 60px 0;
}

h1, h2, h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c5f2d;
}

h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.hero {
    background-color: #e8f5e9; /* Light mint green */
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    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;
    cursor: pointer;
}

.btn-primary {
    background-color: #2c5f2d; /* Deep green */
    color: #ffffff;
    border-color: #2c5f2d;
}

.btn-primary:hover {
    background-color: #388e3c; /* Lighter green on hover */
    border-color: #388e3c;
}

.btn-secondary {
    background-color: #ffeb3b; /* Warm yellow */
    color: #333;
    border-color: #ffeb3b;
}

.btn-secondary:hover {
    background-color: #fbc02d; /* Darker yellow on hover */
    border-color: #fbc02d;
}

.btn-outline {
    background-color: transparent;
    color: #2c5f2d;
    border-color: #2c5f2d;
}

.btn-outline:hover {
    background-color: #e8f5e9;
}

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

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

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

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

.service-card h3 {
    margin-top: 0;
    color: #388e3c;
}

.service-card p {
    font-size: 1.1rem;
    color: #555;
}

.price-highlight {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c5f2d;
    margin: 20px 0;
}

.how-it-works-section {
    background-color: #e8f5e9;
    text-align: center;
}

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

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

.step-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #2c5f2d;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.step p {
    color: #555;
}

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

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

.about-content p {
    margin-bottom: 20px;
}

.trust-section {
    background-color: #fff8e1; /* Light beige */
}

.trust-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.trust-point {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.trust-point h3 {
    color: #388e3c;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.trust-point p {
    color: #555;
    font-size: 1rem;
}

.final-cta {
    background-color: #2c5f2d;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.final-cta h2 {
    color: #ffffff;
    font-size: 2.8rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.final-cta .btn-primary {
    background-color: #ffeb3b;
    color: #333;
    border-color: #ffeb3b;
}

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

.final-cta .btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.final-cta .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

footer {
    background-color: #333;
    color: #ffffff;
    padding: 60px 0 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-nav, .footer-contact, .footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-content h3 {
    color: #2c5f2d;
    margin-bottom: 20px;
}

.footer-content ul {
    list-style: none;
    padding: 0;
}

.footer-content ul li {
    margin-bottom: 10px;
}

.footer-content a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #555;
    font-size: 0.9rem;
    color: #bbb;
}

.footer-bottom a {
    color: #bbb;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* Contact Page Specific Styles */
.contact-hero {
    background-color: #e8f5e9;
    text-align: center;
    padding: 80px 0;
}

.contact-hero h1 {
    font-size: 3rem;
    color: #2c5f2d;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

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

.contact-wrapper {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info h2, .contact-form h2 {
    text-align: left;
    color: #2c5f2d;
}

.contact-info p {
    margin-bottom: 15px;
    color: #555;
    font-size: 1.1rem;
}

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

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

.whatsapp-cta {
    font-weight: bold;
    color: #2c5f2d;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    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 #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn-primary {
    width: auto;
    align-self: flex-start;
}

/* About Page Specific Styles */
.about-hero {
    background-color: #fff8e1;
    text-align: center;
    padding: 80px 0;
}

.about-hero h1 {
    font-size: 3rem;
    color: #2c5f2d;
}

.about-hero p {
    font-size: 1.2rem;
    color: #555;
}

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

.about-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.about-content-wrapper h2, .about-content-wrapper h3 {
    text-align: left;
    color: #2c5f2d;
}

.about-content-wrapper p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
}

.cta-section {
    background-color: #e8f5e9;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 2.8rem;
    color: #2c5f2d;
}

.cta-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 20px;
    }

    nav ul li {
        margin: 10px 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero p, .final-cta p, .contact-hero p, .about-hero p, .cta-section p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .service-cards, .steps-container, .trust-points {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .contact-info, .contact-form {
        width: 90%;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-nav, .footer-contact, .footer-social {
        margin-bottom: 30px;
    }
}