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

        :root {
            --color-primary: #52a868;
            --color-secondary: #6fbc7d;
            --color-dark: #3d8b50;
            --color-text: #717171;
            --color-white: #ffffff;
            --color-bg: #f8faf8;
            --color-bg-secondary: #d4e7d4;
            
            --font-heading: 'Oswald', sans-serif;
            --font-body: 'Roboto', sans-serif;
        }

        body {
            font-family: var(--font-body);
            color: var(--color-text);
            font-size: 1.1rem;
            line-height: 1.75;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            color: #000;
            font-weight: 700;
            line-height: 1.4;
        }

        h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
        h2 { font-size: clamp(1.75rem, 3vw, 2rem); }
        h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

        a {
            color: #000;
            text-decoration: none;
            transition: color 0.3s;
        }

        a:hover {
            color: var(--color-primary);
        }

        .btn {
            display: inline-block;
            background: var(--color-primary);
            color: var(--color-white);
            padding: 0.7rem 2.2rem;
            font-weight: 500;
            border-radius: 4px;
            transition: all 0.3s;
        }

        .btn:hover {
            background: var(--color-secondary);
            transform: translateY(-2px);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1.875rem;
        }

        .container-wide {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.875rem;
        }

        /* Header */
        .header {
            background: var(--color-white);
            padding: 2.5rem 1.875rem;
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .logo img {
            max-width: 100px;
            height: auto;
        }

        .logo-text {
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: var(--color-dark);
            margin: 0;
            line-height: 1.2;
        }

        .header-contact {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .phone {
            font-size: 1.25rem;
            font-weight: 600;
        }

        /* Navigation */
        .nav-bar {
            background: #1a4d2e;
            padding: 1.125rem 1.875rem;
            position: relative;
        }

        .nav-bar .container {
            position: relative;
        }

        .nav-menu {
            display: flex;
            justify-content: center;
            gap: 3rem;
            list-style: none;
        }

        .nav-menu a {
            color: var(--color-white);
            font-weight: 600;
            text-transform: capitalize;
            font-size: 1rem;
        }

        .nav-menu a:hover {
            color: var(--color-primary);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
        }

        .burger-menu span {
            width: 25px;
            height: 3px;
            background: var(--color-white);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .burger-menu.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .burger-menu.active span:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Hero Section */
        .hero {
            position: relative;
            padding: 6.25rem 1.875rem;
            overflow: hidden;
            min-height: 500px;
            display: flex;
            align-items: center;
        }

        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover;
            z-index: 0;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 750px;
            padding-left: 10%;
            color: var(--color-white);
        }

        .hero-subtitle {
            color: var(--color-white);
            font-size: clamp(1.1rem, 2.5vw, 1.75rem);
            text-transform: uppercase;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-title {
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            color: var(--color-white);
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
        }

        .hero-title .highlight {
            color: #fff;
            background: #1a4d2e;
            padding: 0 0.5rem;
            border-radius: 4px;
        }

        .hero-description {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: var(--color-white);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-description p {
            color: var(--color-white);
        }

        .hero-cta {
            margin-top: 2rem;
        }

        /* About Section */
        .about {
            background: var(--color-bg);
            padding: 6.25rem 1.875rem;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .about-label {
            color: var(--color-primary);
            font-size: 1.21rem;
            letter-spacing: 1px;
            text-transform: capitalize;
            margin-bottom: 1rem;
        }

        .about-title {
            margin-bottom: 1.5rem;
        }

        .about-text {
            margin-bottom: 1rem;
        }

        .about-cta {
            margin-top: 2rem;
        }

        /* Services Section */
        .services {
            background: var(--color-dark);
            padding: 6.25rem 1.875rem;
            color: var(--color-white);
        }

        .services h2,
        .services h3 {
            color: var(--color-white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-label {
            color: var(--color-white);
            font-size: 1.21rem;
            letter-spacing: 1px;
            text-transform: capitalize;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .services .section-label {
            color: var(--color-white);
            font-weight: 700;
        }

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

        .service-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 8px;
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        .service-card h3 {
            margin-bottom: 1rem;
        }

        /* Contact Section */
        .contact {
            background: var(--color-bg);
            padding: 6.25rem 1.875rem;
            text-align: center;
        }

        .contact-info {
            margin-top: 3rem;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .contact-item h4 {
            margin-bottom: 0.5rem;
        }

        /* Footer */
        .footer {
            background: var(--color-dark);
            color: var(--color-white);
            padding: 2.5rem 1.875rem;
            text-align: center;
        }

        .footer p {
            margin: 0.5rem 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                text-align: center;
            }

            .header-contact {
                flex-direction: column;
            }

            .burger-menu {
                display: flex;
            }

            .nav-menu {
                display: none;
                flex-direction: column;
                gap: 1rem;
                text-align: center;
                position: absolute;
                top: calc(100% + 1.125rem);
                left: 0;
                right: 0;
                background: #1a4d2e;
                padding: 2rem 1.875rem;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
                z-index: 99;
            }

            .nav-menu.active {
                display: flex;
            }

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

            .hero {
                min-height: 450px;
            }

            .hero-content {
                padding-left: 0;
                text-align: center;
            }

            .hero-video {
                min-width: 100%;
                min-height: 100%;
            }
        }
