* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            overflow-x: hidden;
        }
        
        body.no-scroll {
            overflow: hidden;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        .slideshow-container {
            position: relative;
            width: 100%;
            height: 100vh;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide-content {
            text-align: center;
            color: white;
            padding: 40px;
            max-width: 900px;
            z-index: 10;
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease;
        }
        
        .slide.active .slide-content {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slide-content h1 {
            font-size: 4.5rem;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
            animation: fadeInUp 1s ease forwards;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .slide.active .slide-content h1 {
            animation-delay: 0.3s;
        }
        
        .slide-content .highlight {
            background: linear-gradient(120deg, #B3E0FF 0%, #7FC9FF 30%, #4FB4F5 70%, #B3E0FF 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 3s ease-in-out infinite;
        }
        
        .slide-content p {
            font-size: 1.8rem;
            margin-bottom: 30px;
            font-weight: 400;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
            animation: fadeInUp 1s ease forwards;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .slide.active .slide-content p {
            animation-delay: 0.6s;
        }
        
        .slide-content .subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            font-style: italic;
            animation: fadeInUp 1s ease forwards;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .slide.active .slide-content .subtitle {
            animation-delay: 0.9s;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
        }
        
        @media screen and (max-width: 768px) {
            .slide-content h1 {
                font-size: 2.5rem;
                margin-bottom: 15px;
            }
            
            .slide-content p {
                font-size: 1.2rem;
                margin-bottom: 15px;
            }
            
            .slide-content .subtitle {
                font-size: 1rem;
            }
            
            .slide-content {
                padding: 20px;
                max-width: 90%;
            }

            .about-hero {
                background-image: url('../img_webp/sfondi/bg2.webp') !important;
            }

            .history-section {
                margin: 0;
                padding: 0 20px;
            }

            .history-section h2 {
                font-size: 2.2rem;
                text-align: left !important;
                margin: 20px 10px 20px 10px; /* Adjusted left margin for better alignment */
                padding: 0;
                width: calc(100% - 20px);
            }

            .history-section h2::after {
                bottom: -10px;
                left: 0; /* Align underline with text */
                width: 80px;
                height: 3px;
            }

            .uniforme-section {
                background: linear-gradient(135deg, rgba(255, 255, 255, 0.90) 0%, rgba(248, 249, 250, 0.90) 100%), url('../img_webp/sfondi/bg5.webp') !important;
                background-size: cover;
                background-position: center;
                background-attachment: initial;
            }
        }
        
        @media screen and (max-width: 480px) {
            .slide-content h1 {
                font-size: 2rem;
                margin-bottom: 12px;
            }
            
            .slide-content p {
                font-size: 1.1rem;
                margin-bottom: 12px;
            }
            
            .slide-content .subtitle {
                font-size: 0.9rem;
            }
            
            .slide-content {
                padding: 15px;
            }

             .about-hero {
                background-image: url('../img_webp/sfondi/bg2.webp');
            }

            .history-section {
                padding: 0 15px;
            }

            .history-section h2 {
                font-size: 1.8rem;
                text-align: left !important;
                margin: 5px 0;
                float: left;
            }

            .history-section p {
                font-size: 0.95rem;
                line-height: 1.5;
                margin-bottom: 20px;
            }

            .milestone-card {
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
                border-radius: 15px;
                padding: 25px;
                border: 1px solid rgba(12, 130, 193, 0.2);
                margin-bottom: 20px;
            }

            .milestone-card h3 {
                font-size: 1.2rem;
                margin-bottom: 10px;
                color: #0C82C1;
            }

            .milestone-card p {
                font-size: 0.9rem;
                line-height: 1.4;
                margin-bottom: 0;
                color: #000000;
            }
        }
        
        @media screen and (max-width: 320px) {
            .slide-content h1 {
                font-size: 1.2rem;
                margin-bottom: 10px;
            }
            
            .slide-content p {
                font-size: 1rem;
                margin-bottom: 10px;
            }
            
            .slide-content .subtitle {
                font-size: 0.85rem;
            }
            
            .slide-content {
                padding: 12px;
            }

             .about-hero {
                background-image: url('../img_webp/sfondi/bg2.webp');
            }
        }
        
        @media screen and (max-width: 768px) {
            .btn-professional-container {
                display: none; /* Hide desktop version on mobile */
            }

            .nav-links .btn-professional {
                background: #0C82C1 !important;
                color: #ffffff !important;
                margin-left: auto;
                margin-right: auto;
            }

            .nav-links .btn-professional:hover {
                background: #0C82C1;
            }

            .nav-links a:not(.btn-professional):hover {
                background: rgba(12, 130, 193, 0.1);
                box-shadow: 0 4px 12px rgba(12, 130, 193, 0.15);
                transform: translateY(-1px);
            }
        }

        .nav-links a:not(.btn-professional):hover {
            background: rgba(12, 130, 193, 0.1);
            box-shadow: 0 0 15px rgba(12, 130, 193, 0.15);
            transform: translateY(-2px);
            border: 1px solid rgba(12, 130, 193, 0.2);
        }

        .about-hero {
            min-height: 100vh;
            background-image: url('../img_webp/sfondi/bg.webp');
            background-size: cover;
            background-position: center;
            position: relative;
            padding: 100px 20px;
        }

        .history-section {
            max-width: 1200px;
            margin: 0 auto;
            text-shadow: none;
        }

        .history-section h2, 
        .services-section h2, 
        .uniforme-section h2 {
            font-size: 3.5rem;
            font-weight: 700;
            color: #0C82C1;
            background: linear-gradient(120deg, #0C82C1 0%, #4FB4F5 50%, #0C82C1 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shine 3s linear infinite;
            position: relative;
            text-align: left;
            margin: 50px 0 35px 0;
            padding: 0 0px; /* Reduced from 40px to 20px */
        }

        .history-section h2::after, 
        .services-section h2::after, 
        .uniforme-section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0px; /* Reduced from 40px to 20px */
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #0C82C1, transparent);
        }

        /* Specific color for services section title since it's on dark background */
        .services-section h2 {
            color: #ffffff;
            -webkit-text-fill-color: #ffffff;
        }

        .services-section h2::after {
            background: linear-gradient(90deg, #ffffff, transparent);
        }

        .history-section p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 30px;
            max-width: 800px;
            color: #000000;
        }

        .milestone-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid rgba(12, 130, 193, 0.2);
            margin-bottom: 20px;
        }

        .milestone-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #0C82C1;
        }

        .milestone-card p {
            font-size: 1.1rem;
            margin-bottom: 0;
            color: #000000;
        }

        @media (max-width: 768px) {
            .history-section h2 {
                font-size: 2rem;
                text-align: left;
                margin-top: -30px;
                margin-bottom: 5px;
            }
            
            .history-section p {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.6;
        }
    }

        @media (max-width: 768px) {
            .about-content {
                padding: 30px;
            }
            
            .history-section h2 {
                font-size: 2rem;
                padding: 30px;
        }
    }

        .services-hero {
            min-height: 100vh;
            background-image: url('../img_webp/sfondi/bg3.webp');
            background-size: cover;
            background-position: center;
            position: relative;
            padding: 40px 20px; /* Ridotto da 100px a 40px */
        }

        .services-section {
            max-width: 1200px;
            margin: 0 auto;
            text-shadow: none;
        }

        .services-section h2 {
            font-size: 3.5rem;
            margin-bottom: 40px;
            margin-top: 50px;
            font-weight: 700;
            color: #ffffff;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        @media screen and (max-width: 768px) {
            .services-section h2 {
                font-size: 2.2rem;
                text-align: left !important;
                margin: 20px 40px 20px 40px;
                padding: 0;
                width: calc(100% - 80px);
                white-space: nowrap;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        @media screen and (max-width: 480px) {
            .services-section h2 {
                font-size: 1.8rem;
                margin: 15px 20px;
                padding: 0;
                width: calc(100% - 40px);
            }
        }

        .service-card {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            border-radius: 25px;
            overflow: hidden;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.6);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, transparent, rgba(12, 130, 193, 0.2));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-image {
            width: 100%;
            height: 300px;
            overflow: hidden;
            position: relative;
        }

        .service-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(0deg, rgba(0,0,0,0.4) 0%, transparent 100%);
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.15) rotate(-3deg);
        }

        .service-card h3 {
            color: #ffffff;
            font-size: 1.6rem;
            padding: 25px;
            text-align: center;
            background: rgba(0, 0, 0, 0.3);
            margin: 0;
            position: relative;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .service-card:hover h3 {
            background: rgba(12, 130, 193, 0.4);
            padding-top: 30px;
        }

        .services-cta {
            text-align: center;
            margin-top: 50px;
        }

        .btn-services {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 20px 45px;
            background: rgba(255, 255, 255, 0.95);
            color: #0C82C1;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.3rem;
            border: none;
            clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-services:hover {
            background: #ffffff;
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
        }

        .btn-services:active {
            transform: translateY(1px);
        }

        .btn-services::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                120deg,
                transparent,
                rgba(255, 255, 255, 0.3),
                transparent
            );
            transition: 0.5s;
        }

        .btn-services:hover::before {
            left: 100%;
        }

        @media screen and (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                padding: 0 15px;
            }

            .service-card {
                margin-bottom: 25px;
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }

            .service-image {
                height: 300px; /* Aumentato per una migliore visualizzazione */
            }

            .service-card h3 {
                font-size: 1.4rem;
                padding: 18px 15px;
            }

            .btn-services {
                width: 90%;
                max-width: 300px;
                text-align: center;
                margin: 30px auto;
                padding: 12px 20px;
            }
        }

        @media screen and (max-width: 480px) {
            .services-grid {
                gap: 20px;
                padding: 0 10px;
            }

            .service-card {
                max-width: 340px;
            }

            .service-image {
                height: 260px; /* Proporzione ottimizzata per mobile */
            }

            .service-card h3 {
                font-size: 1.2rem;
                padding: 15px;
            }

            .btn-services {
                font-size: 1rem;
                padding: 10px 15px;
            }
        }

        @media screen and (max-width: 320px) {
            .services-grid {
                gap: 15px;
            }

            .service-card {
                max-width: 280px;
            }

            .service-image {
                height: 220px;
            }

            .service-card h3 {
                font-size: 1rem;
                padding: 10px;
            }
        }

        .white-section {
    background-color: #fff;
    padding: 80px 0;
    width: 100%;
}

.white-section .content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 80px;
}

@media (max-width: 991px) {
    .white-section .content-wrapper {
        padding: 0 50px;
    }
}

@media (max-width: 690px) {
    .white-section .content-wrapper {
        padding: 0 23px;
    }
}

.uniforme-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.90) 0%, rgba(248, 249, 250, 0.90) 100%), url('../img_webp/sfondi/bg4.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.uniforme-section h2 {
    font-size: 3.5rem;
    margin-bottom: 35px;
    margin-top: 50px;
    font-weight: 700;
    color: #0C82C1;
    max-width: 1200px;
    margin-left: 40px;  /* Added specific left margin */
    padding: 0;
    background: linear-gradient(120deg, #0C82C1 0%, #4FB4F5 50%, #0C82C1 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    position: relative;
    text-align: left;
}

.uniforme-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;  /* Align with text */
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #0C82C1, transparent);
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

@media screen and (max-width: 768px) {
    .uniforme-section {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.90) 0%, rgba(248, 249, 250, 0.90) 100%), url('../img_webp/sfondi/bg5.webp');
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
    }

    .uniforme-section h2 {
        font-size: 2.2rem;
        margin: 30px auto 40px;
        padding: 0 20px;
        letter-spacing: 1px;
    }
}

.uniforms-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.floating-uniforms {
    position: relative;
    height: calc(100vh - 200px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.uniform-item {
    position: relative;
    width: 30%;
    max-width: 500px;
    animation: float 6s ease-in-out infinite;
}

.uniform-item.left {
    animation-delay: 0s;
}

.uniform-item.center {
    animation-delay: 2s;
}

.uniform-item.right {
    animation-delay: 4s;
}

.uniform-item img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@media (max-width: 1024px) {
    .floating-uniforms {
        height: auto;
        flex-direction: column;
        gap: 60px;
        padding: 40px 0;
    }

    .uniform-item {
        width: 80%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .uniforme-section h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .uniform-info h3 {
        font-size: 1.8rem;
    }
}

   
    .uniform-image-wrapper {
        height: 400px;
        width: 100%;
    }

    .uniform-text h3 {
        font-size: 2.2rem;
    }


@media (max-width: 768px) {
    .uniforme-section h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .uniforms-grid {
        gap: 60px;
    }

    .uniform-text p {
        font-size: 1.1rem;
    }

    .uniform-image-wrapper {
        height: 350px;
    }
}

    .uniform-image {
        height: 400px;
    }
@media (max-width: 480px) {
    .uniforme-section .section-title {
        font-size: 1.8rem;
        padding: 15px;
    }

    .uniform-image {
        height: 350px;
    }

    .uniform-details h3 {
        font-size: 1.5rem;
    }

    .uniform-details p {
        font-size: 1rem;
    }
}

    .uniform-text h3 {
        font-size: 2.2rem;
    }


@media (max-width: 768px) {
    .uniforme-section h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .uniforms-grid {
        gap: 60px;
    }

    .uniform-text p {
        font-size: 1.1rem;
    }

    .uniform-image-wrapper {
        height: 350px;
    }
}

    .uniform-image {
        height: 400px;
    }
@media (max-width: 480px) {
    .uniforme-section .section-title {
        font-size: 1.8rem;
        padding: 15px;
    }

    .uniform-image {
        height: 350px;
    }

    .uniform-details h3 {
        font-size: 1.5rem;
    }

    .uniform-details p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .services-section h2,
    .history-section h2,
    .uniforme-section h2 {
        font-size: 2.2rem;
        text-align: left !important;
        margin: 20px 20px 20px 20px;
        padding: 0;
        width: calc(100% - 40px);
        white-space: normal;
        line-height: 1.2;
        float: none;
        clear: both;
    }

    .history-section {
        padding: 0;
        margin: 0 auto;
    }

    .history-section h2::after,
    .services-section h2::after,
    .uniforme-section h2::after {
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 2px;
    }
}

@media screen and (max-width: 480px) {
    .services-section h2,
    .history-section h2,
    .uniforme-section h2 {
        font-size: 1.8rem;
        margin: 20px 20px 20px 20px;
        padding: 0;
        width: calc(100% - 40px);
        letter-spacing: -0.5px;
    }
}
    .uniforme-section h2::after {
        width: 60px;
    }



