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

        body {
            font-family: 'Inter', sans-serif;
            background-color: #fafcfd;
            color: #1a2c3e;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* header & nav */
        header {
            background: white;
            box-shadow: 0 8px 20px rgba(0,0,0,0.03), 0 2px 6px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(2px);
            background-color: rgba(255,255,255,0.96);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            flex-wrap: wrap;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        .logo-image {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, #1A4D3E 0%, #2C9B7A 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 12px rgba(26,77,62,0.2);
        }
        .logo-image img {
            width: 32px;
            height: 32px;
            filter: brightness(0) invert(1);
        }
        .logo:hover .logo-image {
            transform: scale(1.02);
            box-shadow: 0 6px 16px rgba(26,77,62,0.3);
        }
        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        .logo-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        .logo-name .base {
            color: #2D2F36;
        }
        .logo-name .log {
            color: #2C9B7A;
        }
        .logo-tagline {
            font-size: 0.7rem;
            font-weight: 500;
            color: #5a7770;
            letter-spacing: 0.3px;
        }
        .logo-tag {
            font-size: 0.7rem;
            font-weight: 600;
            color: #5a7770;
            background: #E9F3EF;
            padding: 4px 10px;
            border-radius: 40px;
            letter-spacing: 0.3px;
            margin-left: 12px;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 600;
            color: #1e3a3f;
            transition: 0.2s;
            font-size: 1rem;
        }
        .nav-links a:hover, .nav-links a.active {
            color: #2C9B7A;
            border-bottom: 2px solid #2C9B7A;
            padding-bottom: 4px;
        }

        .mobile-menu {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #1e3a3f;
        }

        .hero {
            background: linear-gradient(105deg, #eef7f2 0%, #e0ede6 100%);
            border-radius: 0 0 48px 48px;
            margin-bottom: 3rem;
        }
        .hero-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 60px 0 60px;
            gap: 2rem;
        }
        .hero-text {
            flex: 1;
        }
        .hero-text h2 {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.2;
            color: #0a2f33;
            margin-bottom: 1.5rem;
        }
        .hero-text h2 span {
            color: #2C9B7A;
        }
        .hero-text p {
            font-size: 1.2rem;
            color: #2c4f4a;
            max-width: 550px;
            margin-bottom: 2rem;
        }
        .btn-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .btn-primary {
            background: #1A4D3E;
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
        .btn-primary:hover {
            background: #0f3a2f;
            transform: translateY(-2px);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #1A4D3E;
            color: #1A4D3E;
            padding: 10px 26px;
            border-radius: 40px;
            font-weight: 700;
            text-decoration: none;
            transition: 0.2s;
        }
        .btn-outline:hover {
            background: #1A4D3E;
            color: white;
        }
        .hero-image {
            flex: 1;
            text-align: center;
        }
        .hero-image img {
            max-width: 100%;
            width: 380px;
            filter: drop-shadow(10px 12px 18px rgba(0,0,0,0.1));
        }

        section {
            padding: 70px 0;
        }
        .section-title {
            text-align: center;
            font-size: 2.4rem;
            font-weight: 800;
            color: #1A4D3E;
            margin-bottom: 1rem;
        }
        .section-title span {
            color: #2C9B7A;
        }
        .section-sub {
            text-align: center;
            color: #5a7770;
            max-width: 680px;
            margin: 0 auto 3rem auto;
            font-size: 1.1rem;
        }

        /* Carousel Styles */
        .carousel-section {
            background: #ffffff;
        }
        .carousel-wrapper {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            padding: 0 40px;
        }
        .carousel-container {
            overflow: hidden;
            border-radius: 24px;
        }
        .carousel-slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 20px;
        }
        .carousel-slide {
            min-width: calc(33.333% - 13.33px);
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            cursor: pointer;
        }
        .carousel-slide:hover {
            transform: translateY(-5px);
        }
        .carousel-slide img {
            width: 100%;
            height: 480px;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }
        .carousel-slide:hover img {
            transform: scale(1.05);
        }
        .carousel-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 1.5rem;
            text-align: center;
            pointer-events: none;
        }
        .carousel-caption h3 {
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
        }
        .carousel-caption p {
            font-size: 0.85rem;
            opacity: 0.9;
        }
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.95);
            border: none;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            color: #1A4D3E;
            transition: all 0.3s;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .carousel-btn:hover {
            background: #1A4D3E;
            color: white;
            transform: translateY(-50%) scale(1.05);
        }
        .carousel-btn.prev {
            left: 0;
        }
        .carousel-btn.next {
            right: 0;
        }
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }
        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #cddfd8;
            cursor: pointer;
            transition: all 0.3s;
        }
        .dot.active {
            background: #2C9B7A;
            width: 28px;
            border-radius: 10px;
        }
        .dot:hover {
            background: #2C9B7A;
        }

        /* Lightbox personalizzata */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.95);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }
        .lightbox.active {
            display: flex;
        }
        .lightbox-content {
            max-width: 90vw;
            max-height: 90vh;
            position: relative;
        }
        .lightbox-content img {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .lightbox-caption {
            position: absolute;
            bottom: -40px;
            left: 0;
            right: 0;
            text-align: center;
            color: white;
            font-size: 1rem;
            padding: 10px;
            background: rgba(0,0,0,0.6);
            border-radius: 8px;
        }
        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            background: none;
            border: none;
            z-index: 2001;
            transition: transform 0.2s;
        }
        .lightbox-close:hover {
            transform: scale(1.1);
            color: #2C9B7A;
        }
        .lightbox-prev, .lightbox-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 15px;
            border-radius: 50%;
            transition: all 0.2s;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .lightbox-prev:hover, .lightbox-next:hover {
            background: rgba(255,255,255,0.4);
            color: #2C9B7A;
        }
        .lightbox-prev {
            left: 20px;
        }
        .lightbox-next {
            right: 20px;
        }

        /* cards spazi */
        .spaces-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }
        .space-card {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
            flex: 1 1 300px;
            max-width: 350px;
            transition: transform 0.2s ease;
            border: 1px solid #e2efea;
        }
        .space-card:hover {
            transform: translateY(-8px);
        }
        .card-img {
            background: linear-gradient(145deg, #e0f0ea, #cfe3dc);
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            color: #1A4D3E;
        }
        .card-content {
            padding: 24px;
        }
        .card-content h3 {
            font-size: 1.7rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #1A4D3E;
        }
        .features-list {
            list-style: none;
            margin: 15px 0;
        }
        .features-list li {
            margin: 8px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #2c4f4a;
        }
        .features-list i {
            color: #2C9B7A;
            width: 20px;
        }
        .btn-card {
            display: inline-block;
            margin-top: 12px;
            background: #f0f6f3;
            padding: 8px 20px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            color: #1A4D3E;
            transition: 0.2s;
        }
        .btn-card:hover {
            background: #1A4D3E;
            color: white;
        }

        .services-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }
        .service-item {
            background: white;
            border-radius: 24px;
            padding: 28px 22px;
            text-align: center;
            flex: 1 1 220px;
            box-shadow: 0 6px 14px rgba(0,0,0,0.03);
            border: 1px solid #e0ede8;
            transition: all 0.2s;
        }
        .service-item:hover {
            transform: translateY(-5px);
            border-color: #bddcd1;
        }
        .service-item i {
            font-size: 2.5rem;
            color: #2C9B7A;
            margin-bottom: 1rem;
        }
        .service-item h4 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #1A4D3E;
        }

        .location-spotlight {
            background: #eef4f1;
            border-radius: 48px;
            padding: 48px 40px;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }
        .loc-info {
            flex: 1.5;
        }
        .loc-info h3 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: #1A4D3E;
        }
        .loc-info p {
            margin-bottom: 1rem;
            color: #2b564e;
        }
        .loc-highlight {
            background: white;
            padding: 15px 20px;
            border-radius: 28px;
            margin: 20px 0;
            border-left: 4px solid #2C9B7A;
        }
        .loc-highlight i {
            color: #2C9B7A;
            margin-right: 8px;
        }
        .loc-map {
            flex: 1;
            background: #bdd3cb;
            border-radius: 32px;
            height: 280px;
            overflow: hidden;
            box-shadow: 0 12px 20px rgba(0,0,0,0.1);
        }
        .loc-map iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        .contact-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            background: white;
            border-radius: 40px;
            box-shadow: 0 20px 35px rgba(0,0,0,0.05);
            overflow: hidden;
        }
        .contact-info {
            background: linear-gradient(145deg, #1A4D3E, #0f3a2f);
            padding: 40px;
            flex: 1;
            color: white;
        }
        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        .contact-info i {
            margin-right: 12px;
            width: 24px;
            color: #2C9B7A;
        }
        .contact-detail {
            margin: 25px 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .contact-form {
            flex: 1.5;
            padding: 40px;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        input, select, textarea {
            width: 100%;
            padding: 14px 18px;
            border-radius: 28px;
            border: 1px solid #cddfd8;
            font-family: inherit;
            font-size: 1rem;
            background: #fefefe;
            transition: 0.2s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #2C9B7A;
            box-shadow: 0 0 0 3px rgba(44,155,122,0.2);
        }
        button[type="submit"] {
            background: #1A4D3E;
            width: 100%;
            padding: 14px;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            color: white;
            cursor: pointer;
            transition: 0.2s;
        }
        button[type="submit"]:hover {
            background: #0f3a2f;
        }
        .form-message {
            margin-top: 15px;
            text-align: center;
            font-size: 0.9rem;
        }

        footer {
            background: #0c2c2a;
            color: #cfe2dd;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-links {
            display: flex;
            gap: 2rem;
            margin-top: 10px;
        }
        .footer-links a {
            color: #bdd3cb;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
            cursor: pointer;
        }
        .footer-links a:hover {
            color: #2C9B7A;
        }
        .footer-copyright {
            text-align: center;
            margin-top: 40px;
            font-size: 0.85rem;
            border-top: 1px solid #2b6058;
            padding-top: 24px;
        }
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-logo-img {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #2C9B7A, #1A4D3E);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .footer-logo-img img {
            width: 20px;
            height: 20px;
            filter: brightness(0) invert(1);
        }
        .footer-logo-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
        }
        .footer-logo-text .base {
            color: #b0dfd4;
        }
        .footer-logo-text .log {
            color: #2C9B7A;
        }

        /* Modal styles for privacy/cookie */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        .modal-content {
            background: white;
            border-radius: 24px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            padding: 30px;
            position: relative;
            animation: modalFadeIn 0.3s ease;
        }
        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e0ede8;
        }
        .modal-header h3 {
            color: #1A4D3E;
            font-size: 1.5rem;
        }
        .modal-close {
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #5a7770;
            transition: color 0.2s;
        }
        .modal-close:hover {
            color: #c0392b;
        }
        .modal-body {
            color: #2c4f4a;
            line-height: 1.6;
        }
        .modal-body h4 {
            color: #1A4D3E;
            margin: 20px 0 10px 0;
        }
        .modal-body p {
            margin-bottom: 12px;
        }
        .modal-body ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        @media (max-width: 850px) {
            .navbar {
                position: relative;
            }
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                background: white;
                padding: 20px 0;
                gap: 1rem;
                text-align: center;
            }
            .nav-links.show {
                display: flex;
            }
            .mobile-menu {
                display: block;
            }
            .hero-text h2 {
                font-size: 2.2rem;
            }
            .container {
                padding: 0 24px;
            }
            .location-spotlight, .contact-wrapper {
                flex-direction: column;
            }
            .loc-map {
                height: 220px;
            }
            .logo-tag {
                display: none;
            }
            .carousel-slide {
                min-width: calc(100% - 20px);
            }
            .carousel-slide img {
                height: 300px;
            }
            .carousel-btn {
                width: 36px;
                height: 36px;
                font-size: 1rem;
            }
            .carousel-wrapper {
                padding: 0 30px;
            }
            .logo-image {
                width: 42px;
                height: 42px;
            }
            .logo-image img {
                width: 26px;
                height: 26px;
            }
            .logo-name {
                font-size: 1.2rem;
            }
            .logo-tagline {
                font-size: 0.6rem;
            }
            .footer-links {
                flex-direction: column;
                gap: 0.5rem;
            }
			 .hero-image {
        display: none;
    }
        }
        .badge-location {
            background: #ddf3ed;
            display: inline-block;
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #1c6e6b;
            margin-bottom: 1rem;
        }
        .badge-location i {
            color: #2C9B7A;
        }
