* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            overflow-x: hidden;
        }
        
        body.no-scroll {
            overflow: hidden;
        }
        
        
        .slideshow-container {
            position: relative;
            width: 100%;
            height: 100vh;
            background: #0C82C1; /* Add default background color */
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .slide:first-child {
            opacity: 1; /* Make first slide visible by default */
        }
        
        .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: 4rem;
            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.5rem;
            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;
        }
        
        @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%);
        }

        /* Sezione Form Curriculum */
        .curriculum-section {
            padding: 80px 0;
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .curriculum-section::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../img_webp/sfondi/bg.webp') no-repeat center center;
            background-size: cover;
            will-change: transform;
            z-index: -1;
        }

        .curriculum-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .curriculum-container {
            position: relative;
            z-index: 1;
            max-width: 1300px;
            padding: 0 80px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        @media (max-width: 991px) {
            .curriculum-container {
                padding: 0 50px;
            }
        }

        @media (max-width: 690px) {
            .curriculum-container {
                padding: 0 23px;
            }
        }

        .info-section {
            padding: 40px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }

        .info-section h2 {
            color: #0C82C1;
            font-size: 2.5rem;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .info-section p {
            color: #555;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .requirements-list {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }

        .requirements-list li {
            padding: 12px 0;
            padding-left: 30px;
            position: relative;
            color: #555;
            font-size: 1rem;
        }

        .requirements-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #0C82C1;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .form-section {
            padding: 40px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }

        .form-section h3 {
            color: #0C82C1;
            font-size: 2rem;
            margin-bottom: 30px;
            font-weight: 600;
            text-align: center;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 600;
            font-size: 1rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.9);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #0C82C1;
            box-shadow: 0 0 0 3px rgba(12, 130, 193, 0.1);
        }

        .file-upload {
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .file-upload input[type="file"] {
            opacity: 0;
            position: absolute;
            z-index: -1;
        }

        .file-upload-label {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 20px;
            border: 2px dashed #0C82C1;
            border-radius: 10px;
            background: rgba(12, 130, 193, 0.05);
            cursor: pointer;
            transition: all 0.3s ease;
            color: #0C82C1;
            font-weight: 600;
        }

        .file-upload-label:hover {
            background: rgba(12, 130, 193, 0.1);
            border-color: #0a6a9a;
        }

        .file-upload-icon {
            width: 24px;
            height: 24px;
        }

        .file-info {
            margin-top: 10px;
            padding: 10px;
            background: rgba(12, 130, 193, 0.1);
            border-radius: 8px;
            display: none;
        }

        .file-info.show {
            display: block;
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #0C82C1 0%, #0a6a9a 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 20px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(12, 130, 193, 0.3);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .file-notice {
            background: rgba(255, 193, 7, 0.1);
            border: 1px solid rgba(255, 193, 7, 0.3);
            border-radius: 8px;
            padding: 15px;
            margin-top: 10px;
            color: #856404;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .file-notice strong {
            color: #664d03;
        }

        /* Responsive Design */
        @media screen and (max-width: 768px) {
            .curriculum-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .slide-content h1 {
                font-size: 2.5rem;
                margin-bottom: 15px;
            }
            
            .slide-content p {
                font-size: 1.2rem;
                margin-bottom: 15px;
            }
            
            .slide-content {
                padding: 20px;
                max-width: 90%;
            }

            .info-section,
            .form-section {
                padding: 30px 20px;
            }

            .info-section h2 {
                font-size: 2rem;
            }

            .form-section h3 {
                font-size: 1.5rem;
            }

            .btn-professional-container {
                display: none;
            }

            .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);
            }
        }

        @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 {
                padding: 15px;
            }

            .curriculum-section {
                padding: 60px 15px;
            }

            .info-section,
            .form-section {
                padding: 25px 15px;
            }
        }

        .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);
        }
