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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header Styles */
header {
    background: linear-gradient(135deg, #2d5016 0%, #355e3b 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.logo {
    height: 80px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.header-text h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header-text h2 {
    font-size: 1.4em;
    font-weight: 400;
    opacity: 0.95;
}

.tagline {
    font-size: 1.1em;
    opacity: 0.9;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Styles */
.section {
    padding: 40px 0 50px;
}

.bg-light {
    background-color: #f8f6f0;
}

.bg-primary {
    background: linear-gradient(135deg, #2d5016 0%, #355e3b 100%);
    color: white;
}

.section h2 {
    font-size: 2.2em;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: #2d5016;
}

.bg-primary h2 {
    color: white;
}

.section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    color: #2d5016;
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    text-align: justify;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Credentials */
.credentials-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.credentials-list li {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid #7ba05b;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
}

/* Contact Info */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-item {
    text-align: center;
    font-size: 1.1em;
}

.contact-item strong {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item a {
    color: #e8f5e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: white;
    text-decoration: underline;
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Important to include padding and border in the element's total width and height */
    font-size: 1em;
}

.contact-form textarea {
    resize: vertical; /* Allow vertical resizing */
}

.contact-form .btn {
    display: inline-block;
    background-color: #2d5016; /* Green color from existing button */
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.contact-form .btn:hover {
    background-color: #1e380e; /* Darker green for hover */
}

/* ALF CTA Button */
.cta-alf-container {
    text-align: center;
    margin-top: 40px;
}

.btn-primary-cta {
    display: inline-block;
    background-color: #7ba05b; /* A slightly different, inviting green */
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary-cta:hover {
    background-color: #6a8d4f; /* Darker shade for hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}


/* Footer */
footer {
    background-color: #1b2f1b;
    color: white;
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-text h1 {
        font-size: 2em;
    }
    
    .header-text h2 {
        font-size: 1.2em;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 25px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 60px;
    }
    
    .header-text h1 {
        font-size: 1.7em;
    }
    
    .section h2 {
        font-size: 1.8em;
    }
}