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

        :root {
            --primary-red: #c41e3a;
            --primary-green: #008c45;
            --dark-bg: #1a1a1a;
            --light-bg: #fafafa;
            --text-dark: #2c2c2c;
            --text-light: #666;
            --border-color: #e5e5e5;
            --shadow: 0 4px 6px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--light-bg);
            overflow-x: hidden;
        }

        header {
            background: var(--primary-red);
            color: white;
            padding: 4rem 0 3rem;
            position: relative;
            overflow: hidden;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
            text-align: center;
        }

        header h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        header h2 {
            font-size: clamp(1rem, 2vw, 1.25rem);
            opacity: 0.95;
            font-weight: 300;
            color: white;
        }

        nav {
            background: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 3px solid var(--primary-green);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        nav a {
            color: var(--text-dark);
            text-decoration: none;
            padding: 1.2rem 1.5rem;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--primary-red);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        nav a:hover {
            color: var(--primary-red);
        }

        nav a:hover::after {
            width: 80%;
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }

        section {
            background: white;
            padding: 3rem;
            margin-bottom: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        section:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: var(--primary-red);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        h3 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: var(--text-dark);
            margin-bottom: 1rem;
            border-left: 4px solid var(--primary-green);
            padding-left: 1rem;
        }

        p {
            margin-bottom: 1.2rem;
            color: var(--text-light);
            font-size: 1.05rem;
        }

        .hero-image {
            width: 100%;
            max-width: 100%;
            height: auto;
            margin: 2rem 0;
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
        }

        .slideshow-container {
            max-width: 900px;
            position: relative;
            margin: 2rem auto;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            background: #000;
        }

        .slide {
            display: none;
            position: relative;
        }

        .slide.active {
            display: block;
            animation: fadeIn 0.8s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        <style>
        /* Stili per la Call to Action Box */
        .cta-box {
            background-color: #fdfdfa;
            padding: 30px 40px;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            text-align: center;
            margin: 40px auto;
            max-width: 650px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .cta-box h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: #333;
            margin-top: 0;
            margin-bottom: 15px;
        }

        .cta-box p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 25px;
        }

        /* Stile per il pulsante principale */
        .main-button {
            display: inline-block;
            background-color: #b32a2a; /* Rosso Garibaldino */
            color: white;
            padding: 15px 35px;
            font-size: 1.2rem;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease, transform 0.2s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .main-button:hover {
            background-color: #9e2525;
            transform: translateY(-2px);
        }

        .slide img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }

        .caption {
            color: white;
            font-size: 1rem;
            padding: 1.5rem;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            text-align: center;
            font-weight: 400;
        }

        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            padding: 1rem;
            color: white;
            font-weight: bold;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            user-select: none;
            background: rgba(0,0,0,0.4);
            border: none;
            z-index: 10;
            border-radius: 4px;
        }

        .prev {
            left: 1rem;
        }

        .next {
            right: 1rem;
        }

        .prev:hover, .next:hover {
            background: var(--primary-red);
            transform: translateY(-50%) scale(1.1);
        }

        .dots-container {
            text-align: center;
            margin-top: 1.5rem;
        }

        .dot {
            cursor: pointer;
            height: 12px;
            width: 12px;
            margin: 0 6px;
            background-color: #ddd;
            border-radius: 50%;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .dot.active {
            background-color: var(--primary-red);
            transform: scale(1.3);
        }

        .dot:hover {
            background-color: var(--primary-green);
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .info-card {
            background: var(--light-bg);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .info-card:hover {
            border-color: var(--primary-red);
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }

        .info-card h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--primary-red);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .info-card h4::before {
            content: '●';
            color: var(--primary-green);
            font-size: 1.5rem;
        }

        .info-card p {
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .info-card a {
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 500;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s ease;
        }

        .info-card a:hover {
            border-bottom-color: var(--primary-red);
        }

        .info-card strong {
            color: var(--text-dark);
            font-weight: 600;
        }

        .info-card small {
            display: block;
            margin-top: 0.5rem;
            font-style: italic;
            color: var(--text-light);
        }


       .hero-image-container {
             margin-bottom: 2em;
       }


        footer {
            background: var(--dark-bg);
            color: white;
            text-align: center;
            padding: 2rem 2rem 1rem;
            margin-top: 1rem;
        }

        footer p {
            color: rgba(255,255,255,0.7);
            font-size: 0.95rem;
        }

        @media (max-width: 768px) {
            section {
                padding: 2rem 1.5rem;
            }

            .nav-container {
                padding: 0 1rem;
            }

            nav a {
                padding: 1rem 0.8rem;
                font-size: 0.9rem;
            }

            .slide img {
                height: 300px;
            }

            .prev, .next {
                padding: 0.7rem;
                font-size: 1.2rem;
            }

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

            h2 {
                margin-bottom: 1rem;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 2rem 0 2rem;
                padding-top: 4rem;        
            }
                    /* Stile per nascondere il testo su schermi piccoli */

            .hide-on-mobile {
                display: none;
            }

            main {
                padding: 2rem 1rem;
            }

            section {
                padding: 1.5rem 1rem;
                margin-bottom: 1.5rem;
            }

            .slide img {
                height: 250px;
            }

            .caption {
                font-size: 0.9rem;
                padding: 1rem;
            }
        }
