:root {
    --primary-green: #82b440;
    --dark-green: #6a9935;
    --light-green: #a8d060;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    font-weight: 400;
    color: var(--dark-gray);
    text-decoration: none;
}

.logo span {
    color: var(--primary-green);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-green);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary-green);
    opacity: 0.1;
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--primary-green);
    opacity: 0.1;
    border-radius: 50%;
}

.hero h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 64px;
    font-weight: 400;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 .highlight {
    color: var(--primary-green);
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--medium-gray);
}

.cta-button {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
}

.cta-button:hover {
    background: var(--dark-green);
    transform: scale(1.05);
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.section-title h2 .highlight {
    color: var(--primary-green);
}

.section-title p {
    font-size: 18px;
    color: var(--medium-gray);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-green);
    margin: 20px auto 0;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--primary-green);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 40px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--medium-gray);
}

/* Approach Section */
.approach {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.approach-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.approach-text h2 .highlight {
    color: var(--primary-green);
}

.approach-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--medium-gray);
}

.approach-visual {
    flex: 1;
    text-align: center;
}

.approach-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.method {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    border-left: 4px solid var(--primary-green);
}

.method:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.05);
}

.method i {
    font-size: 30px;
    margin-bottom: 10px;
    color: var(--primary-green);
}

.method:hover i {
    color: var(--white);
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background-color: var(--white);
}

.why-us-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-us-text {
    flex: 1;
}

.why-us-text h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.why-us-text h2 .highlight {
    color: var(--primary-green);
}

.why-us-text p {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.team-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-green);
    margin-bottom: 10px;
}

.team-member p {
    font-weight: 600;
    color: var(--dark-gray);
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-claim {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    color: var(--primary-green);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 16px;
    }

    .approach-content,
    .why-us-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-claim {
        font-size: 28px;
    }
}

/* Easter Egg */
.easter-egg {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-green);
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 700;
    box-shadow: var(--shadow);
    color: var(--white);
    z-index: 1000;
}

.easter-egg.show {
    display: block;
}