/* Nature/Organic Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-primary: #2d8659;
    --green-dark: #1e5a3d;
    --green-light: #4aad7a;
    --beige: #f5f1e8;
    --beige-dark: #e8e0d0;
    --brown: #8b7355;
    --brown-light: #a68d6f;
    --cream: #faf8f3;
    --text-dark: #3d3d3d;
    --text-light: #666666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--cream);
}

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 65px;
    width: auto;
    filter: brightness(0) invert(1);
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--beige);
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--beige);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
    padding: 7rem 0;
    text-align: center;
    color: var(--beige);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
    opacity: 0.9;
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--green-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
    border-radius: 2px;
}

/* Services Section */
.services {
    background-color: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: var(--beige);
    padding: 3.5rem 2.5rem;
    border-radius: 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--green-primary);
    box-shadow: 0 10px 40px rgba(45, 134, 89, 0.2);
}

.service-icon-wrapper {
    margin-bottom: 2rem;
}

.service-icon {
    font-size: 4rem;
    display: inline-block;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(45, 134, 89, 0.3);
}

.service-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--green-dark);
}

.service-description {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* About Section */
.about {
    background: linear-gradient(135deg, var(--beige) 0%, var(--cream) 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-lead {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--green-dark);
    line-height: 1.9;
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    background-color: var(--beige);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 25px rgba(45, 134, 89, 0.15);
}

.feature-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--beige);
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(45, 134, 89, 0.3);
}

.feature-item p {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.05rem;
    margin: 0;
}

/* Contact Section */
.contact {
    background-color: var(--cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--green-primary);
    box-shadow: 0 10px 35px rgba(45, 134, 89, 0.2);
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--green-dark);
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
}

.contact-card a {
    color: var(--green-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--green-dark);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
    padding: 3rem 0;
    text-align: center;
    color: var(--beige);
}

.footer p {
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--beige);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.footer-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.separator {
    opacity: 0.5;
}

/* Content Pages Styling */
.content-section {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.content-section h2 {
    color: var(--green-dark);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.content-section h3 {
    color: var(--green-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.content-section p {
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.content-section ul {
    color: var(--text-dark);
    line-height: 1.9;
    padding-left: 2rem;
    list-style-type: disc;
}

.content-section a {
    color: var(--green-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-section a:hover {
    color: var(--green-dark);
    text-decoration: underline;
}

.content-card {
    background-color: var(--beige);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.content-card p {
    margin-bottom: 0.5rem;
}

.content-card p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 5rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    section {
        padding: 4rem 0;
    }
}

