/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #002d2b;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #002d2b;
    padding: 20px 0;
    border-bottom: 2px solid #00b4a0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 200px;
    height: auto;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #00b4a0;
}

/* Hero Section */
.hero {
    background-color: #002d2b;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #00b4a0;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn {
    background-color: #00b4a0;
    color: #002d2b;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #ffffff;
    color: #002d2b;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #003d3a; /* Slightly lighter than main bg */
}

.about h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #00b4a0;
}

.about p {
    font-size: 1.1em;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #002d2b;
}

.services h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #00b4a0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service {
    background-color: #003d3a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #00b4a0;
}

.service h3 {
    color: #00b4a0;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: #001a18;
    padding: 20px 0;
    text-align: center;
    color: #cccccc;
}

footer p {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }
    nav ul {
        flex-direction: column;
    }
    nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
    }
}