        /* --- Global Styles & Variables --- */
        :root {
            --primary-green: #1e3a1e; /* Hijau Tua */
            --accent-terracotta: #c44536; /* Oranye-Cokelat / Terakota */
            --light-gray: #f4f4f4;
            --white-color: #ffffff;
            --text-color: #333333;
            --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-family);
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--white-color);
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1, h2, h3 {
            color: var(--primary-green);
            margin-bottom: 1rem;
        }

        h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 2.5rem;
            position: relative;
            padding-bottom: 15px;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent-terracotta);
        }

        section {
            padding: 70px 0;
        }
        
        section:nth-child(even) {
            background-color: var(--light-gray);
        }

        /* --- Header & Navigation --- */
        .sticky-header {
            background: var(--white-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            width: 100%;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-green);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .logo:hover {
            color: var(--accent-terracotta);
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 25px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-terracotta);
            transition: all 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
            left: 0;
        }
        .nav-links a:hover {
            color: var(--primary-green);
        }

        .lang-container {
            display: flex;
            gap: 5px;
            align-items: center;
            margin-right: 10px;
        }

        .lang-btn {
            background-color: transparent;
            color: var(--primary-green);
            border: 1px solid var(--primary-green);
            padding: 5px 10px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            font-size: 12px;
            transition: all 0.3s ease;
            opacity: 0.5; /* Tombol tidak aktif terlihat redup */
        }
          
        .lang-btn.active {
            background-color: var(--primary-green);
            color: var(--white-color);
            opacity: 1;
        }

        .lang-btn:hover {
            opacity: 1;
            background-color: var(--light-gray);
        }

        /* --- Hero Section --- */
        #home {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/HOMElahansawit.jpg') no-repeat center center/cover;
            height: 90vh;
            color: var(--white-color);
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            color: var(--white-color);
            margin-bottom: 1rem;
        }

        .hero-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem auto;
        }

        /* --- Buttons & Links --- */
        .btn, main a {
            display: inline-block;
            padding: 12px 25px;
            background-color: var(--accent-terracotta);
            color: var(--white-color);
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.1s ease; /* Required for smooth press animation */
        }
        .btn:hover, main a:hover {
            background-color: var(--primary-green);
            transform: translateY(-2px);
        }

        /* --- Pressed Animation Class --- */
        .is-pressed {
            transform: scale(0.95);
        }
        
        /* --- Common Section Styles --- */
        .section-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .card {
            background: var(--white-color);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }

        .card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .card-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .card-content h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .card-content p {
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }
        
        /* --- Products Section --- */
        #products .card-content .btn {
            align-self: flex-start;
        }

        /* --- Articles Section --- */
        #articles .card-content p {
            color: #666;
            font-size: 0.95rem;
        }

        /* --- Gallery Section --- */
        #gallery .section-grid {
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        }
        #gallery .card {
            cursor: pointer;
        }
        #gallery .card img {
            transition: transform 0.3s ease;
        }
        #gallery .card:hover img {
            transform: scale(1.1);
        }

        /* --- About Section --- */
        #about .container {
            max-width: 800px;
        }
        #about h3 {
            color: var(--accent-terracotta);
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }
        #about ul {
            list-style: none;
            padding-left: 20px;
        }
        #about ul li {
            position: relative;
            margin-bottom: 1rem;
            padding-left: 25px;
        }
        #about ul li::before {
            content: '✔';
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--accent-terracotta);
            font-weight: bold;
        }

        /* --- Contact & Order Section --- */
        #contact_order .container {
            max-width: 700px;
        }
        .contact-form {
            background: var(--white-color);
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: var(--primary-green);
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        .contact-form .btn {
            width: 100%;
            padding: 15px;
            font-size: 1.1rem;
        }
        
        /* --- Testimonials Section --- */
        .testimonial-card {
            background: var(--white-color);
            padding: 2rem;
            border-left: 5px solid var(--accent-terracotta);
            border-radius: 0 8px 8px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .testimonial-card p {
            font-style: italic;
            margin-bottom: 1.5rem;
        }
        .testimonial-card .author {
            font-weight: bold;
            color: var(--primary-green);
        }

        /* --- Footer --- */
        footer {
            background: var(--primary-green);
            color: var(--light-gray);
            padding: 3rem 0 2rem 0;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-content > div {
            flex: 1;
            min-width: 280px;
        }

        footer h3 {
            color: var(--white-color);
            margin-bottom: 1rem;
            font-size: 1.2rem;
            text-align: left; /* Align left for multi-column layout */
            border-bottom: none;
        }

        footer p {
            margin-bottom: 0.5rem;
            line-height: 1.8;
        }

        .footer-social {
            text-align: center;
        }

        .footer-social a {
            color: var(--white-color);
            margin: 0 10px;
            font-size: 1.8rem;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        .footer-social a:hover {
            color: var(--accent-terracotta);
            transform: scale(1.1);
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
        }

        /* --- Responsive Design --- */
        @media (max-width: 768px) {
            h2 { font-size: 2rem; }
            .hero-content h1 { font-size: 2.5rem; }
            .nav-links {
                flex-direction: column;
                gap: 10px;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--primary-green);
                padding: 20px 0;
                text-align: center;
                display: none; /* Placeholder for JS toggle */
            }
            .nav-links a { color: var(--white-color); }
            .menu-toggle {
                display: block;
                cursor: pointer;
                font-size: 1.5rem;
            }

            /* Footer Responsive */
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            footer h3 {
                text-align: center;
            }
        }
        .menu-toggle {
            display: none;
        }
