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

/* Body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Navbar styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #7bbf7b; /* Soft green for a natural, calming feel */
    padding: 1rem 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Logo styling */
.navbar .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 1px;
}

/* Navbar links container */
.nav-links {
    display: flex;
    list-style-type: none;
}

.nav-links li {
    margin-left: 2rem;
}

/* Navbar links styling */
.nav-links a {
    text-decoration: none;
    font-size: 1rem;
    color: #ffffff; /* White text */
    transition: color 0.3s ease-in-out;
}

/* Hover effect for links */
.nav-links a:hover {
    color: #f4a261; /* A warm orange color */
}

/* Responsive design: Align navbar links vertically on smaller screens */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-links {
        width: 100%;
        flex-direction: column;
        padding-top: 1rem;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
}


/* Service page specific styling */
.services-section {
    padding: 2rem 2rem;
    background-color: #f9f9f9; /* Light background for a clean look */
    text-align: center;
}

.services-container {
    max-width: 1000px;
    margin: 0 auto;
}

.services-section h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.services-section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-item {
    background-color: #ffffff; /* White background for each service item */
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-item h2 {
    font-size: 1.8rem;
    color: #7bbf7b; /* Soft green for headings */
    margin-bottom: 1rem;
}

.service-item p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.service-item:hover {
    background-color: #f0f5f0; /* Light green background on hover for each service */
    transition: background-color 0.3s ease;
}


footer {
    text-align: center;
    padding: 1rem;
    background-color: #7bbf7b; /* Soft green background for the footer */
    color: white;
    margin-top: 260px;
}