/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    color: #333;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

header {
    background: white;
    padding: 10px 0;
    border-bottom: 2px solid #eaeaea;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav a:hover {
    color: #00C000;
}

/* Hero */
.hero {
    background: #00C000;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 2.5em;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    color: #00C000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.btn:hover {
    background: #eaeaea;
}

/* Sections */
section {
    padding: 50px 20px;
}

h2 {
    color: #00C000;
    text-align: center;
    margin-bottom: 20px;
}

.about p {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

/* Services */
.services .service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.card h3 {
    color: #00C000;
}

/* Contact */
.contact p {
    text-align: center;
    font-size: 1.1em;
}

/* Footer */
footer {
    background: #f4f4f4;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9em;
}
