* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #40bf70;
            --secondary: #ff7d3d;
            --light: #f9f9f9;
            --dark: #1e3932;
            --text: #333;
            --accent: #6ab04c;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        body {
            color: var(--text);
            background-color: var(--light);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            width: 90%;
            margin: 0 auto;
        }

        /* Header */
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 15px 0;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            width: 200px;
            height: auto;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-link a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 17px;
            position: relative;
            padding: 5px 0;
            transition: all 0.3s ease;
        }

        .nav-link a:hover {
            color: var(--primary);
        }

        .nav-link a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-link a:hover::after {
            width: 100%;
        }

        .mobile-toggle {
            display: none;
            font-size: 24px;
            color: var(--dark);
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            height: 85vh;
            background: linear-gradient(rgba(30, 57, 50, 0.7), rgba(30, 57, 50, 0.9)), url('images/hero.png') center/cover no-repeat;
            display: flex;
            align-items: center;
            color: white;
        }
         .hero_legal {
            height: 300px;
            background: linear-gradient(rgba(30, 57, 50, 0.7), rgba(30, 57, 50, 0.9)), url('images/hero.png') center/cover no-repeat;
            display: flex;
            align-items: center;
            color: white;
        }
        
          .hero_legal h1 {
            font-size: clamp(3rem, 6vw, 5rem);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-content {
            max-width: 650px;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
        }

        .btn {
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: linear-gradient(to right, var(--primary), var(--accent));
            color: white;
            box-shadow: 0 4px 16px rgba(64, 191, 112, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(64, 191, 112, 0.4);
        }

        .btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background-color: rgba(255,255,255,0.1);
            transform: translateY(-3px);
        }

        /* Section Styling */
        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
          .section-legal {
            text-align: left;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            margin: 15px auto 0;
            border-radius: 10px;
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

   

        .about-text h3 {
            font-size: 1.8rem;
            color: var(--dark);
            margin-bottom: 20px;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .about-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }

        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            box-shadow: var(--shadow);
            height: 300px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            padding: 20px;
            color: white;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .overlay {
            transform: translateY(0);
        }

        .gallery-item h3 {
            font-size: 1.4rem;
            margin-bottom: 5px;
        }

        .gallery-item p {
            font-size: 1rem;
            opacity: 0.8;
        }
/* Newsletter */
        .newsletter {
            background: var(--card-bg);
            padding: 3rem;
            border-radius: var(--border-radius);
            text-align: center;
            margin-bottom: 4rem;
            box-shadow: var(--shadow);
        }

        .newsletter h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .newsletter p {
            color: var(--gray);
            margin-bottom: 1.5rem;
        }

        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 18px;
            border: 1px solid #ddd;
            border-radius: 50px;
            font-size: 1rem;
        }

        .newsletter-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 500;
            transition: var(--transition);
        }

        .newsletter-form button:hover {
            background: var(--secondary);
        }
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-info h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .footer-info p {
            line-height: 1.7;
            opacity: 0.8;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.1);
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-5px);
        }

        .footer-links h4 {
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* Cookie Popup */
        .cookie-popup {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 500px;
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 6px 30px rgba(0,0,0,0.15);
            display: none;
            z-index: 1000;
        }

        .cookie-popup.show {
            display: block;
            animation: slideUp 0.5s ease;
        }

        @keyframes slideUp {
            from { 
                transform: translate(-50%, 100%); 
                opacity: 0;
            }
            to { 
                transform: translate(-50%, 0); 
                opacity: 1;
            }
        }

        .cookie-content {
            margin-bottom: 20px;
        }

        .cookie-content h3 {
            color: var(--dark);
            margin-bottom: 10px;
        }

        .cookie-content p {
            font-size: 14px;
            line-height: 1.6;
            color: var(--text);
            opacity: 0.8;
        }

        .cookie-buttons {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }

        .cookie-btn {
            padding: 8px 20px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-accept {
            background-color: var(--primary);
            color: white;
        }

        .btn-accept:hover {
            background-color: var(--accent);
        }

        .btn-reject {
            background-color: transparent;
            color: var(--text);
        }

        .btn-reject:hover {
            background-color: rgba(0,0,0,0.05);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                margin-top: 20px;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 15px 0;
            }
            
            .nav-links {
                position: fixed;
                top: 75px;
                right: -100%;
                flex-direction: column;
                background: white;
                width: 70%;
                height: calc(100vh - 75px);
                box-shadow: -5px 0 20px rgba(0,0,0,0.1);
                padding: 50px 0 0 30px;
                transition: right 0.3s ease;
                z-index: 99;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .hero {
                height: auto;
                padding: 80px 0;
            }
            
            .cta-buttons {
                flex-direction: column;
                gap: 10px;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            section {
                padding: 60px 0;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-links {
                margin-top: 10px;
            }
        }

        @media (max-width: 576px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .cookie-buttons {
                flex-direction: column;
                gap: 8px;
            }
            
            .cookie-btn {
                width: 100%;
            }
        }