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

        :root {
            --primary-green: #008f11;
            --primary-red: #8d2214;
            --light-bg: #f8f9fa;
            --white: #ffffff;
            --text-dark: #333333;
            --text-light: #666666;
            --border-light: #e0e0e0;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--white);
            overflow-x: hidden
        }

        /* Header */
        header {
            position: relative;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                        url('data:image/svg+xml,<svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23e3f2fd" width="1200" height="400"/><path fill="%23bbdefb" d="M0,250 Q300,200 600,250 T1200,250 L1200,400 L0,400 Z"/><path fill="%234fc3f7" d="M0,300 Q300,250 600,300 T1200,300 L1200,400 L0,400 Z"/></svg>');
            background-size: cover;
            background-position: center;
            height: 500px;
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        nav {
            background: rgba(255,255,255,0.95);
            padding: 1rem 2rem;
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-green);
            text-decoration: none;
            flex-shrink: 1;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s;
            cursor: pointer;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary-green);
        }

        .language-switch {
            display: flex;
            gap: 0.5rem;
            border: 1px solid var(--border-light);
            border-radius: 20px;
            overflow: hidden;
        }

        .language-switch button {
            background: none;
            border: none;
            padding: 0.5rem 1rem;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 0.9rem;
        }

        .language-switch button.active {
            background: var(--primary-green);
            color: white;
        }

        .hero-content {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 2rem;
            background-image: url('../images/lac2.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 300px;
        }

        .hero-text h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-text p {
            font-size: 1.2rem;
            max-width: 600px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        /* Mobile language switch */
        .mobile-language-switch {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
            justify-content: center;
        }

        .mobile-language-switch button {
            background: #008f11;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            cursor: pointer;
            transition: 0.3s;
            font-size: 14px;
        }

        .mobile-language-switch button.active,
        .mobile-language-switch button:hover {
            background: #8d2214;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--text-dark);
            transition: 0.3s;
        }

        /* Main Content */
        main {
            display: none;
        }

        main.active {
            display: block;
        }

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

        .section {
            padding: 4rem 0;
        }

        .section:nth-child(even) {
            background: var(--light-bg);
        }

        .section h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
            color: var(--primary-green);
        }

        .section h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--primary-red);
        }

        .grid {
            display: grid;
            gap: 2rem;
            margin-top: 2rem;
        }

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

        .grid-3 {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }

        .card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        /* Team */
        .team-member {
            text-align: center;
        }

        .team-photo {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            margin: 0 auto 1rem;
            background: var(--light-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: var(--text-light);
            border: 3px solid var(--primary-green);
        }
        .team-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        .deco-photo {
            width: min(300px, 80vw);
            height: min(300px, 80vw);
            border-radius: 80%;
            margin: 0 auto 1rem;
            background: var(--light-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: var(--text-light);
            border: 3px solid var(--primary-green);
        }
        .deco-photo img {
            object-fit: cover;
            border-radius: 80%;
        }

        .keywords {
            margin-top: 1rem;
            font-style: italic;
            color: var(--text-light);
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: white;
            padding: 3rem 0 1rem;
        }

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

        .footer-section h4 {
            margin-bottom: 1rem;
            color: var(--primary-green);
        }

        .footer-section a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            cursor: pointer;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #555;
            color: #ccc;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

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

            .mobile-menu a {
                padding: 1rem 0;
                border-bottom: 1px solid var(--border-light);
                color: var(--text-dark);
                text-decoration: none;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            .hero-text p {
                font-size: 1rem;
            }

            nav {
                padding: 1rem;
            }

            .container {
                padding: 0 1rem;
            }

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