       /* Variables CSS */
        :root {
            --primary-green: #2d7a2d;
            --light-green: #4caf50;
            --accent-green: #66bb6a;
            --dark-green: #1b5e20;
            --bg-light: #f8f9fa;
            --bg-white: #ffffff;
            --text-dark: #2c3e50;
            --text-light: #6c757d;
            --shadow: 0 2px 15px rgba(0,0,0,0.1);
            --shadow-hover: 0 5px 25px rgba(0,0,0,0.15);
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }

        /* Reset and general styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-light);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding-inline: 15px;
        }

        a:focus,
        button:focus {
            outline: 2px solid var(--accent-green);
            outline-offset: 2px;
            box-shadow: 0 0 0 3px rgba(102, 187, 106, 0.3);
            transition: outline 0.2s ease;
        }

        /* Navbar */
        .navbar {
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 0;
            box-shadow: var(--shadow);
            backdrop-filter: blur(10px);
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .logo i {
            font-size: 2rem;
            color: #81c784;
        }

        .logo img {
            height: 50px; 
            width: auto;
            display: block;
            border-radius: 8px;
            padding: 2px;
        }

        
        .nav-links {
            display: flex;
            gap: 0;
            list-style: none;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            padding: 0.8rem 1.2rem;
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            border-radius: var(--border-radius);
            position: relative;
        }

        .nav-links a:hover {
            background-color: rgba(255,255,255,0.1);
            transform: translateY(-2px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 5px;
            left: 50%;
            background-color: #81c784;
            transition: var(--transition);
            transform: translateX(-50%);
        }

        .nav-links a:hover::after {
            width: 80%;
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-menu span {
            display: block;
            width: 22px;
            height: 2px;
            background-color: white;
            border-radius: 1px;
            transition: transform 0.3s ease, opacity 0.3s ease;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .mobile-menu span:nth-child(1) {
            top: 8px;
        }

        .mobile-menu span:nth-child(2) {
            top: 14px;
        }

        .mobile-menu span:nth-child(3) {
            top: 20px;
        }

        .mobile-menu.active span:nth-child(1) {
            transform: translateX(-50%) rotate(45deg);
            top: 14px;
        }

        .mobile-menu.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu.active span:nth-child(3) {
            transform: translateX(-50%) rotate(-45deg);
            top: 14px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(45, 122, 45, 0.6), rgba(27, 94, 32, 0.6));
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            z-index: -1;
            opacity: 0.6; 
        }

        .hero-content {
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease-out;
            padding-top: 2rem;
        }

        .hero h1 {
            font-size: clamp(1.5rem, 5vw, 3rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            max-width: 90%;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            padding: 0 20px;
            word-wrap: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
            text-align: center;
            line-height: 1.2;
        }

        .hero p {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }

        .hero-btn {
            background: linear-gradient(135deg, var(--light-green), var(--accent-green));
            color: white;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            box-shadow: var(--shadow);
        }

        .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
            background: linear-gradient(135deg, var(--accent-green), var(--light-green));
        }

        /* Sections  */
        section {
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, var(--light-green), var(--accent-green));
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        /* About Us */
        #about-us {
            background: linear-gradient(to bottom, #f8f9fa, rgba(102, 187, 106, 0.04));
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-top: 2rem;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-light);
        }

        .about-image {
            position: relative;
            height: 320px;
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 2rem;
            overflow: hidden;
            background: linear-gradient(135deg, var(--light-green), var(--accent-green));
        }

        .about-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            opacity: 0.7; 
            border-radius: var(--border-radius);
        }

        .about-image::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background: rgba(45 , 122, 45, 0.7);
			border-radius: var(--border-radius);
			z-index: 1;
        }

		.about-overlay {
			position: relative;
			z-index: 2;
			display: flex;
			flex-direction: column;
			align-items: center;
			gap: 1rem;
            background-color: rgba(34, 85, 34, 0.4);
            padding: 1rem;
            border-radius: 8px;
		}

		.about-overlay span {
			font-size: 1.5rem;
			font-weight: 600;
            color: #fefefe;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
		}

		.service-list {
			list-style: none;
			padding: 0;
			margin: 0;
		}

		.service-list li {
			font-size: 1.1rem;
			font-weight: 500;
			color: #fefefe;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
			margin: 0.3rem 0;
		}

        /* Services */
        #services {
            background: var(--bg-light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .service-card {
            background: var(--bg-white);
            padding: 2rem;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--light-green);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .service-card i {
            font-size: 3rem;
            color: var(--light-green);
            margin-bottom: 1rem;
        }

        .service-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-green);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Gallery */
        #gallery {
            background: linear-gradient(to bottom, #f8f9fa, rgba(102, 187, 106, 0.04));
        }

        .gallery-grid {
            display: grid;
			grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
			flex-wrap: wrap;
            margin-top: 2rem;
			transition: transform 0.4s ease;
        }

        .gallery-item {
            position: relative;
            height: 250px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: var(--shadow-hover);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(45, 122, 45, 0.8), rgba(27, 94, 32, 0.8));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
			pointer-events: none;
			z-index: 1;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay span {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
        }
		
		/* Gallery carousel (only galleria.html) */
		.gallery-viewport .gallery-grid {
			display: flex;
			flex-wrap: nowrap;
			gap: 0;
			transition: transform 0.4s ease;
		}
		
		.gallery-viewport .gallery-item {
			flex: 0 0 auto;
			margin-right: 1.5rem;
		}
		
		.gallery-viewport .gallery-item:last-child {
		    margin-right: 0;
		}
	
		.gallery-carousel {
			display: flex;
			align-items: center;
			gap: 1rem;
		}

		.gallery-viewport {
			overflow: hidden;
			flex: 1;
		}

		.gallery-nav {
			background: linear-gradient(135deg, var(--light-green), var(--accent-green));
			border: none;
			color: #fff;
			width: 36px;
			height: 36px;
			border-radius: 50%;
			cursor: pointer;
			display: flex;
			align-items: center;
			justify-content: center;
			box-shadow: var(--shadow);
			transition: var(--transition);
			flex-shrink: 0;
		}

		.gallery-nav:hover {
			transform: translateY(-2px);
			box-shadow: var(--shadow-hover);
		}
		
		/* Gallery Button - Hybrid */
		.gallery-btn {
			display: inline-block;
			margin-top: 1rem;
			padding: 0.8rem 2rem;
			background: linear-gradient(135deg, var(--light-green), var(--accent-green));
			color: white;
			text-decoration: none;
			border-radius: 50px;
			font-weight: 600;
			font-size: 1.1rem;
			box-shadow: var(--shadow);
			transition: var(--transition);
		}

		.gallery-btn:hover {
			transform: translateY(-2px);
			box-shadow: var(--shadow-hover);
			background: linear-gradient(135deg, var(--accent-green), var(--light-green));
		}

        /* Testimonials */
        #testimonials {
            background: var(--bg-light);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .testimonial-card {
            background: var(--bg-white);
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 4rem;
            color: var(--light-green);
            font-weight: bold;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--primary-green);
        }

        /* Contact */
        #contact {
            background: linear-gradient(to bottom, #f8f9fa, rgba(102, 187, 106, 0.04));
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 2rem;
        }

        .contact-form {
            background: var(--bg-light);
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }

        .contact-form form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-form input,
        .contact-form textarea {
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
            font-family: inherit;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: 2px solid var(--light-green);
            outline-offset: 2px;
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.3);
            border-color: var(--light-green);
        }

        .contact-form button {
            background: linear-gradient(135deg, var(--light-green), var(--accent-green));
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .contact-form button:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: var(--bg-light);
            border-radius: var(--border-radius);
        }

        .contact-item i {
            font-size: 1.5rem;
            color: var(--light-green);
            width: 30px;
        }

        .contact-item div h4 {
            color: var(--primary-green);
            margin-bottom: 0.25rem;
        }

        .contact-item div p {
            color: var(--primary-green);
            margin: 0;
        }

        .contact-item a {
            color: var(--primary-green); 
            text-decoration: underline;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: var(--primary-green); 
            text-decoration: none;
        }

        .contact-link {
            color: var(--primary-green);
            text-decoration: underline;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .contact-link:hover {
            color: var(--light-green);
            text-decoration: none;
        }

        .error-message {
            color: red;
            font-size: 0.9em;
            margin-bottom: 8px;
        }

        input.error, textarea.error {
            border: 2px solid red;
        }

        #location {
            background: var(--bg-light);
        }

        .map-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }

        .map-block {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .map-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--dark-green);
            text-align: center;
            margin: 0;
        }

        .map-frame {
            width: 100%;
            height: 300px;
            border: none;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }

        #come-arrivare {
            background: linear-gradient(to bottom, var(--bg-white), var(--bg-light));
            padding: 3rem 0;
        }

        #come-arrivare .section-title {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

        #come-arrivare p {
            font-size: 1rem;
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .video-wrapper {
            max-width: 700px;
            margin: 0 auto;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .whatsapp-float,
        .scroll-top-float {
            position: fixed;
            bottom: 20px;
            z-index: 1000;
        }

        .whatsapp-float {
            right: 20px;
        }

        .scroll-top-float {
            left: 20px;
        }

        .cookie-banner {
            position: fixed;
            bottom: -120px;
            left: 0;
            right: 0;
            background: #2e7d32;
            color: white;
            font-size: 0.9rem;
            z-index: 9999;
            transition: bottom 0.6s ease, opacity 0.6s ease;
            opacity: 0;
            pointer-events: none;
            box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
        }

        .cookie-banner.show {
            bottom: 0;
            opacity: 1;
            pointer-events: auto;
        }

        .cookie-banner .cookie-content {
            max-width: 960px;
            margin: 0 auto;
            padding: 1rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

        .cookie-banner a {
            color: #c8e6c9;
            text-decoration: underline;
        }

        .cookie-banner button {
            background: #81c784;
            border: none;
            padding: 0.5rem 1rem;
            color: #2e7d32;
            font-weight: bold;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .cookie-banner button:hover {
            background: #66bb6a;
        }

        /* Cookie Consent - Additional styles */
        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }

        .cookie-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.6);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10000;
        }

        .cookie-modal[aria-hidden="false"] {
            display: flex;
        }

        .cookie-modal-content {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            max-width: 500px;
            width: 90%;
            color: #2c3e50;
        }

        .cookie-modal-content h2 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .cookie-modal-actions {
            margin-top: 1rem;
            text-align: right;
        }

        .cookie-modal-content label {
            display: block;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .whatsapp-float a,
        .scroll-top-float a {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            transition: background-color 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-float a {
            width: 55px;
            height: 55px;
            font-size: 28px;
        }

        .scroll-top-float a {
            width: 35px;
            height: 35px;
            font-size: 24px;
        }

        .whatsapp-float a:hover,
        .scroll-top-float a:hover {
            background-color: #1ebe5d;
        }

        button.loading {
            position: relative;
            color: transparent !important;
            pointer-events: none;
        }

        button.loading::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 18px;
            height: 18px;
            margin: -9px 0 0 -9px;
            border: 2px solid #ccc;
            border-top: 2px solid #2c3e50;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        .social-icons a {
            margin: 0 10px;
            font-size: 1.5rem;
            color: floralwhite;
            transition: color 0.3s ease;
            text-decoration: none;
        }

        .social-icons a:hover {
            color: var(--light-green);
        }

        .social-icons a:hover i {
            transform: scale(1.2);
            transition: transform 0.3s ease;
        }

        .crediti {
            font-size: 0.75rem;
            opacity: 0.7;
            margin-top: 0.5rem;
        }

        .crediti a {
            color: white;
            text-decoration: underline;
        }

        .crediti a:hover {
            color: var(--light-green);
        }

        #correoDesigner {
            color: inherit;
            text-decoration: none;
        }

        #correoDesigner:hover {
            text-decoration: underline;
            color: var(--light-green);
        }
		
		/* Screen reader only - accessibility */
		.sr-only {
			position: absolute !important;
			width: 1px !important;
			height: 1px !important;
			padding: 0 !important;
			margin: -1px !important;
			overflow: hidden !important;
			clip: rect(0, 0, 0, 0) !important;
			white-space: nowrap !important;
			border: 0 !important;
		}

        /* Animations  */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .fadeInUp {
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
        }

        .delay-1s {
            animation-delay: 1s;
        }

        .delay-02s {
        animation-delay: 0.2s;
        }

		/* Lightbox gallery */
		.lightbox {
		  position: fixed;
		  inset: 0;
		  z-index: 1100;
		  display: none;
		  align-items: center;
		  justify-content: center;
		}

		.lightbox.is-open {
		  display: flex;
		}

		.lightbox-backdrop {
		  position: absolute;
		  inset: 0;
		  background: rgba(0, 0, 0, 0.7);
		}

		.lightbox-content {
		  position: relative;
		  z-index: 1;
		  max-width: 90vw;
		  max-height: 90vh;
		  padding: 1rem;
		  background: var(--bg-white);
		  border-radius: var(--border-radius);
		  box-shadow: var(--shadow-hover);
		  display: flex;
		  flex-direction: column;
		  align-items: center;
		  gap: 0.75rem;
		}

		.lightbox-image {
		  max-width: 100%;
		  max-height: 70vh;
		  border-radius: var(--border-radius);
		  object-fit: contain;
		}

		.lightbox-caption {
		  font-size: 0.95rem;
		  color: var(--text-light);
		  text-align: center;
		}

		.lightbox-close,
		.lightbox-prev,
		.lightbox-next {
		  position: absolute;
		  border: none;
		  background: rgba(0, 0, 0, 0.5);
		  color: #fff;
		  width: 32px;
		  height: 32px;
		  border-radius: 50%;
		  cursor: pointer;
		  display: flex;
		  align-items: center;
		  justify-content: center;
		  font-size: 1.4rem;
		  transition: background 0.2s ease;
		}

		.lightbox-close {
		  top: 8px;
		  right: 8px;
		}

		.lightbox-prev {
		  top: 50%;
		  left: 8px;
		  transform: translateY(-50%);
		}

		.lightbox-next {
		  top: 50%;
		  right: 8px;
		  transform: translateY(-50%);
		}

		.lightbox-close:hover,
		.lightbox-prev:hover,
		.lightbox-next:hover {
		  background: rgba(0, 0, 0, 0.7);
		}

        /* Responsive Design */
		
		@media (min-width: 769px) {
			#gallery-page .hero-content {
				padding-top: 4rem; 
			}
			.gallery-viewport .gallery-item {
				flex: 0 0 calc((100% - 3 * 1.5rem) / 4); 
				margin-right: 1.5rem;
			}
			gallery-viewport .gallery-item:last-child {
				margin-right: 0;
			}
		}

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 2rem;
                transition: var(--transition);
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links a {
                display: block;
                padding: 1rem 2rem;
                margin-bottom: 1rem;
                font-size: 1.1rem;
                width: 100%;
                text-align: center;
                border-radius: 8px;
                background-color: rgba(255,255,255,0.05);
            }
            
            .nav-links a::after {
                display: none;
            }
            
            .mobile-menu {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 5px;
                width: 30px;
                height: 30px;
                background: none;
                border: none;
                padding: 0;
                margin: 0;
                cursor: pointer;
                position: relative;
                overflow: hidden;
            }

            .mobile-menu span:nth-child(1) {
                top: 8px;
            }

            .mobile-menu span:nth-child(2) {
                top: 14px;
            }

            .mobile-menu span:nth-child(3) {
                top: 20px;
            }

            .mobile-menu.active span:nth-child(1) {
                transform: translateX(-50%) rotate(45deg);
                top: 14px;
            }

            .mobile-menu.active span:nth-child(2) {
                opacity: 0;
            }

            .mobile-menu.active span:nth-child(3) {
                transform: translateX(-50%) rotate(-45deg);
                top: 14px;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .services-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
			
			#gallery .gallery-grid {
				grid-template-columns: 1fr; 
			}
			
			.gallery-viewport .gallery-item {
				flex: 0 0 100%;
				margin-right: 0;
			}

            section {
                padding: 3rem 0;
            }

            .about-image {
                height: 380px;
                padding: 1.5rem;
            }

            .about-overlay {
                padding: 3rem 1.5rem;
                display: flex;
                flex-direction: column;
                justify-content: center;
                background-color: rgba(34, 85, 34, 0.5);
            }

            .about-overlay span {
                margin-bottom: 1.5rem;
                font-size: 1.2rem;
            }
            
            .map-wrapper {
                grid-template-columns: 1fr;
            }

            .map-frame {
                height: 250px;
            }
            
            #come-arrivare {
                padding: 2rem 0;
            }

            .video-wrapper {
                max-width: 100%;
            }
            .cookie-banner .cookie-content {
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;
                padding: 1rem;
            }

            .cookie-banner button {
                width: 100%;
                margin-left: 0;
            }

            .cookie-buttons {
                flex-direction: column;
                gap: 0.5rem;
                width: 100%;
            }

            .cookie-buttons button {
                width: 100%;
            }

            .cookie-modal-content {
                padding: 1.5rem;
                font-size: 0.95rem;
            }

            .cookie-modal-actions {
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 0 1rem;
            }

            .hero-content {
                position: relative;
                top: -2rem; 
            }

            .hero h1 {
                font-size: 1.8rem;
                line-height: 1.3;
                max-width: 95%;
                margin: 0 auto 1rem auto;
                padding: 0 15px;
                word-break: break-word;
                overflow-wrap: break-word;
                hyphens: auto;
                text-align: center;
            }

            .hero p {
                font-size: 1rem;
                line-height: 1.5;
                max-width: 95%;
                margin: 0 auto 2rem auto;
                padding: 0 15px;
                text-align: center;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .service-card,
            .testimonial-card,
            .contact-form {
                padding: 1.5rem;
            }

            .about-image {
                height: 240px;
                padding: 1.5rem;
                position: relative;
            }

            .about-overlay {
                max-height: 100%;
                overflow: hidden;
                margin: 0 auto; 
                padding: 1rem; 
                background-color: rgba(34, 85, 34, 0.6); 
                border-radius: 8px;
                gap: 0.5rem;
            }

            .about-overlay span {
                font-size: 1.2rem;
                margin-bottom: 0.1rem;
            }

            .service-list li {
                font-size: 0.95rem;
            }
        }