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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f0f8ff; /* Light blue background */
}

/* Header Styles */
header {
    background: #2c3e50; /* Dark blue-gray */
    color: #ecf0f1; /* Light gray */
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
}

/* Navigation Styles */
nav {
    background: #3498db; /* Bright blue */
    padding: 10px;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
}

/* Main Content Styles */
main {
    padding: 20px;
}

h2 {
    color: #27ae60; /* Green for nature */
    margin-bottom: 15px;
}

section {
    margin-bottom: 30px;
}

.service {
    background: #ecf0f1; /* Light gray */
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service h3 {
    color: #2980b9; /* Blue */
}

/* Footer Styles */
footer {
    background: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 600px) {
    nav ul li {
        display: block;
        margin: 10px 0;
    }
    
    header h1 {
        font-size: 2em;
    }
}
