/* Global Styles */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f7f5;
    color: #333;
}

h1, h2, h3 {
    margin: 0;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #0b5127; /* dark green */
    color: white;
}

header .logo {
    font-size: 1.6rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.btn-outline {
    padding: 10px 20px;
    border: 2px solid white;
    background: transparent;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 80, 40, 0.5), rgba(0,80,40,0.5)),
                url('https://images.unsplash.com/photo-1561414927-6d86591d0c4f') center/cover no-repeat;
    color: white;
    padding: 140px 40px;
    text-align: left;
}

.hero-content {
    max-width: 550px;
}

.btn-primary {
    padding: 12px 25px;
    background: #0b8f45; /* light green */
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 1rem;
}

/* Services */
.services {
    padding: 60px 40px;
    background: white;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #0b5127;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    background: #e7f4ec;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #0b8f45;
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 60px 40px;
    background: #0b5127;
    color: white;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #083b1c;
    color: white;
    font-size: 0.9rem;
}
