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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #344E41;
    background-color: #DAD7CD;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #344E41;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #3A5A40;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    color: #DAD7CD;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #DAD7CD;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu a:hover {
    color: #A3B18A;
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #DAD7CD;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    background-image: url('landscape-placeholder.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100%;
    position: relative;
}

/* Service Sections */
.service-section {
    padding: 4rem 0;
    background-color: #DAD7CD;
}

.service-section.alternate {
    background-color: #A3B18A;
}

.service-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #344E41;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.service-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #3A5A40;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    background-color: #588157;
    color: #DAD7CD;
    padding: 0.8rem 1.5rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3A5A40;
}

.service-features li:before {
    content: "✓ ";
    font-weight: bold;
    color: #A3B18A;
    margin-right: 0.5rem;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid #588157;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #3A5A40 0%, #344E41 100%);
    color: #DAD7CD;
}

.contact-section h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #A3B18A;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-item {
    text-align: center;
    background-color: #588157;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid #A3B18A;
}

.contact-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #DAD7CD;
}

.contact-item p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #A3B18A;
}

/* Footer */
.footer {
    background-color: #344E41;
    color: #DAD7CD;
    text-align: center;
    padding: 2rem;
    border-top: 3px solid #3A5A40;
}

    .logo img {
	max-height:50px;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #344E41;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 2rem 2rem;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .service-content {
        flex-direction: column;
        text-align: center;
    }
    
    .service-section.alternate .service-content {
        flex-direction: column-reverse;
    }
    
    .service-text h3 {
        font-size: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-item {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .service-text h3 {
        font-size: 1.8rem;
    }
    
    .contact-section h3 {
        font-size: 2rem;
    }
    
    .nav {
        padding: 1rem;
    }

    .logo img {
  display: flex;
  align-items: center;
  justify-content: center;
    }
}