/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f3f4f6;
    color: #333;
}

header {
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 2px solid #A2C837;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    max-width: 300px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: #A2C837;
}

/* Hero Section (Common) */
.hero, .services-hero, .about-hero, .contact-hero {
    background: url('hero-background.jpg') no-repeat center center/cover;
    color: rgb(255, 255, 255);
    padding: 100px 20px;
    text-align: center;
}

.hero h1, .services-hero h1, .about-hero h1, .contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Specific Sections */
.home-services, .about-content, .services-content, .contact-content {
    padding: 50px 20px;
    background-color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #A2C837;
}

p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

ul.services-list {
    list-style: none;
    padding: 0;
}

ul.services-list li {
    background: #A2C837;
    color: white;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.btn {
    display: inline-block;
    background-color: #A2C837;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #8db82b;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}
