 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --color-background: #faf9f7;
            --color-foreground: #1a2e1a;
            --color-primary: #2d5a3d;
            --color-primary-foreground: #faf9f7;
            --color-secondary: #e8e3d8;
            --color-muted: #f0ede5;
            --color-muted-foreground: #5a6b5a;
            --color-accent: #c89b4a;
            --color-border: #ddd8cc;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--color-background);
            color: var(--color-foreground);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .font-playfair {
            font-family: 'Playfair Display', serif;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            background-color: rgba(250, 249, 247, 0.95);
            backdrop-filter: blur(12px);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--color-primary);
            text-decoration: none;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        nav a {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--color-foreground);
            text-decoration: none;
            transition: color 0.3s;
        }

        nav a:hover {
            color: var(--color-primary);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem 1.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            border-radius: 0.5rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }

        .btn-primary {
            background-color: var(--color-primary);
            color: var(--color-primary-foreground);
        }

        .btn-primary:hover {
            background-color: #234a2f;
        }

        .btn-outline {
            background-color: transparent;
            color: var(--color-foreground);
            border: 2px solid var(--color-border);
        }

        .btn-outline:hover {
            background-color: var(--color-muted);
        }

        .btn-lg {
            padding: 0.875rem 2rem;
            font-size: 1rem;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-nav {
            display: none;
            padding: 1rem 0;
            border-top: 1px solid var(--color-border);
        }

        .mobile-nav.active {
            display: block;
        }

        .mobile-nav a {
            display: block;
            padding: 0.75rem 0;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--color-foreground);
            text-decoration: none;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.2;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(250, 249, 247, 0.8), rgba(250, 249, 247, 0.6), var(--color-background));
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 8rem 1rem;
            max-width: 64rem;
            margin: 0 auto;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            background-color: rgba(45, 90, 61, 0.1);
            color: var(--color-primary);
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 2rem;
        }

        h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        h1 .highlight {
            display: block;
            color: var(--color-primary);
            margin-top: 0.5rem;
        }

        .hero p {
            font-size: 1.125rem;
            color: var(--color-muted-foreground);
            margin-bottom: 3rem;
            max-width: 42rem;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        .scroll-indicator-inner {
            width: 1.5rem;
            height: 2.5rem;
            border: 2px solid var(--color-primary);
            border-radius: 9999px;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 0.5rem;
        }

        .scroll-indicator-dot {
            width: 0.25rem;
            height: 0.75rem;
            background-color: var(--color-primary);
            border-radius: 9999px;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-10px); }
        }

        /* Section Styles */
        section {
            padding: 6rem 0;
        }

        .section-bg {
            background-color: rgba(240, 237, 229, 0.3);
        }

        .section-primary {
            background-color: var(--color-primary);
            color: var(--color-primary-foreground);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .section-header p {
            font-size: 1.125rem;
            color: var(--color-muted-foreground);
            max-width: 42rem;
            margin: 0 auto;
        }

        .section-primary .section-header p {
            color: rgba(250, 249, 247, 0.8);
        }

        /* Grid Layouts */
        .grid {
            display: grid;
            gap: 2rem;
        }

        .grid-2 {
            grid-template-columns: 1fr;
        }

        .grid-3 {
            grid-template-columns: 1fr;
        }

        .grid-4 {
            grid-template-columns: 1fr;
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .feature-icon {
            flex-shrink: 0;
            margin-top: 0.25rem;
        }

        .about-image-wrapper {
            position: relative;
        }

        .about-image {
            aspect-ratio: 4/3;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-badge {
            position: absolute;
            bottom: -1.5rem;
            right: -1.5rem;
            background-color: var(--color-primary);
            color: var(--color-primary-foreground);
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            max-width: 18rem;
        }

        .about-badge-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .about-badge-text {
            font-size: 0.875rem;
        }

        /* Added signature style for about section */
        .about-signature {
            margin-top: 2rem;
            font-style: italic;
            color: var(--color-muted-foreground);
            text-align: right;
            font-size: 1rem;
        }
.trade-fair-card {
    background: linear-gradient(135deg, #1a5f3f 0%, #2d8659 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 95, 63, 0.3);
}

.trade-fair-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.trade-fair-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.trade-fair-card .section-title {
    color: white;
    margin-bottom: 40px;
    font-size: 42px;
}

.fair-details {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.fair-name {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fair-date {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.fair-stand {
    font-size: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.stand-number {
    display: inline-block;
    background: white;
    color: #1a5f3f;
    padding: 10px 30px;
    border-radius: 10px;
    font-size: 32px;
    font-weight: 700;
    margin-left: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.fair-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 40px;
}

.fair-cta {
    margin-top: 40px;
}

.fair-cta .btn-primary {
    background: white;
    color: #1a5f3f;
    font-size: 18px;
    padding: 16px 48px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.fair-cta .btn-primary:hover {
    background: #ffd700;
    color: #1a5f3f;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .trade-fair-card {
        padding: 40px 20px;
    }
    
    .trade-fair-card .section-title {
        font-size: 32px;
    }
    
    .fair-name {
        font-size: 28px;
    }
    
    .fair-date {
        font-size: 20px;
    }
    
    .stand-number {
        font-size: 24px;
        padding: 8px 20px;
        display: block;
        margin: 10px auto 0;
        width: fit-content;
    }
    
    .fair-description {
        font-size: 16px;
    }
}
        /* Product Cards */
        .card {
            background-color: white;
            border-radius: 0.5rem;
            overflow: hidden;
            transition: box-shadow 0.3s;
        }

        .card:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .card-image {
            aspect-ratio: 3/2;
            overflow: hidden;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .card:hover .card-image img {
            transform: scale(1.05);
        }

        .card-content {
            padding: 1.5rem;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .card-description {
            color: var(--color-muted-foreground);
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        .card-link {
            color: var(--color-primary);
            text-decoration: none;
            font-weight: 500;
        }

        /* Sustainability Features */
        .sustainability-features {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .sustainability-feature {
            text-align: center;
        }

        .feature-icon-wrapper {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 4rem;
            height: 4rem;
            border-radius: 9999px;
            background-color: rgba(250, 249, 247, 0.1);
            margin-bottom: 1.5rem;
        }

        .sustainability-feature h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .sustainability-feature p {
            color: rgba(250, 249, 247, 0.8);
            line-height: 1.7;
        }

        .quote-box {
            display: inline-block;
            background-color: rgba(250, 249, 247, 0.1);
            border-radius: 1rem;
            padding: 2rem;
            max-width: 48rem;
            margin-top: 4rem;
        }

        .quote-box p {
            font-size: 1.25rem;
            font-weight: 500;
            line-height: 1.6;
        }

        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .contact-icon {
            flex-shrink: 0;
            width: 3rem;
            height: 3rem;
            border-radius: 9999px;
            background-color: rgba(45, 90, 61, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-item-content h3 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .contact-item-content a {
            color: var(--color-muted-foreground);
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-item-content a:hover {
            color: var(--color-primary);
        }

        /* Form Styles */
        form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        label {
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        input, textarea {
            padding: 0.75rem 1rem;
            border: 1px solid var(--color-border);
            border-radius: 0.5rem;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: var(--color-primary);
        }

        textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Added media section styles */
        .media-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .media-video {
            aspect-ratio: 16/9;
            background-color: var(--color-muted);
            border-radius: 1rem;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .media-images {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .media-image-item {
            aspect-ratio: 1;
            background-color: var(--color-muted);
            border-radius: 0.5rem;
            overflow: hidden;
            display: flex;
            justify-content: center;
        }

        .media-image-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .media-placeholder {
            color: var(--color-muted-foreground);
            text-align: center;
        }

        footer {
            background-color: var(--color-foreground);
            color: var(--color-background);
            padding: 4rem 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand {
            grid-column: span 1;
        }

        .footer-brand h3 {
            font-size: 1.875rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-brand p {
            color: rgba(250, 249, 247, 0.7);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 9999px;
            background-color: rgba(250, 249, 247, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }

        .social-link:hover {
            background-color: rgba(250, 249, 247, 0.2);
        }

        .footer-links h4 {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-links ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-links a {
            color: rgba(250, 249, 247, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--color-background);
        }

        .footer-bottom {
            border-top: 1px solid rgba(250, 249, 247, 0.2);
            padding-top: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 1.5rem;
            font-size: 0.875rem;
        }

        .footer-bottom-links a {
            color: rgba(250, 249, 247, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover {
            color: var(--color-background);
        }

        /* Responsive Design */
        @media (min-width: 640px) {
            .hero-buttons {
                flex-direction: row;
                justify-content: center;
            }

            /* Added responsive media images grid */
            .media-images {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 768px) {
            .container {
                padding: 0 2rem;
            }

            h1 {
                font-size: 4rem;
            }

            h2 {
                font-size: 3rem;
            }

            section {
                padding: 8rem 0;
            }

            .grid-2 {
                grid-template-columns: repeat(2, 1fr);
            }

            .grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .sustainability-features {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
            }

            /* Added responsive media grid */
            .media-grid {
                grid-template-columns: 1.5fr 1fr;
            }

            .media-images {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 767px) {
            nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }
        }

        @media (min-width: 1024px) {
            h1 {
                font-size: 5rem;
            }

            .grid-3 {
                grid-template-columns: repeat(3, 1fr);
            }

            .grid-4 {
                grid-template-columns: repeat(4, 1fr);
            }

            .sustainability-features {
                grid-template-columns: repeat(4, 1fr);
            }

            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr 1fr;
            }

            /* Added responsive media images grid */
            .media-images {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Added language switcher styles */
        .language-switcher {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background-color: rgba(45, 90, 61, 0.1);
            border-radius: 9999px;
            padding: 0.25rem;
        }

        .language-btn {
            padding: 0.375rem 0.75rem;
            font-size: 0.875rem;
            font-weight: 500;
            border: none;
            background: transparent;
            color: var(--color-foreground);
            border-radius: 9999px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .language-btn.active {
            background-color: var(--color-primary);
            color: var(--color-primary-foreground);
        }

        .language-btn:hover:not(.active) {
            background-color: rgba(45, 90, 61, 0.1);
        }