.header {
            background: linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
            padding: 8px 35px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
            position: fixed;
            z-index: 1000;
            border-radius: 16px;
            margin: 15px auto;
            width: 95%;
            max-width: 1400px;
            left: 50%;
            transform: translateX(-50%);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 
                0 4px 25px rgba(0, 0, 0, 0.08),
                inset 0 0 0 1px rgba(255, 255, 255, 0.5);
        }

        .header-logo {
            width: 240px;
            height: 65px;
            margin-right: 50px;
        }

        .header-logo a {
            display: block;
            width: 100%;
            height: 100%;
        }

        .header-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .nav-container {
            display: flex;
            justify-content: center;
            flex: 1;
            position: relative;
            padding-left: 10%;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            justify-content: center;
            position: relative;
            margin-right: auto;
        }
        
        .nav-links a {
            color: #0C82C1;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 0.3px;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 18px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 40px;
            line-height: 1.2;
        }
        
        .btn-professional-container {
            margin-left: auto;
            padding-left: 50px;
            margin-right: 20px;
        }

        .btn-professional {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 12px 24px;
            padding-left: 60px;  /* Increased padding to accommodate the image */
            font-family: 'Segoe UI', sans-serif;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            color: #ffffff !important;
            background: #0C82C1  !important; /* Adjust path to where you save the image */
            background-size: 28px !important;  /* Increased image size from 24px to 32px */
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-left: auto;
        }

        .btn-professional:hover {
            background: #0C82C1;
            color: #ffffff;
            box-shadow: none;
        }
        
        .btn-professional .btn-icon {
            width: 28px;
            height: 28px;
            object-fit: contain;
        }
        
        /* Burger Menu Styles */
        .burger-menu {
            display: none;
            cursor: pointer;
            width: 30px;
            height: 25px;
            position: relative;
            z-index: 1001;
        }
        
        .burger-menu span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: #0C82C1;
            border-radius: 3px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: .25s ease-in-out;
        }
        
        .burger-menu span:nth-child(1) {
            top: 0px;
        }
        
        .burger-menu span:nth-child(2),
        .burger-menu span:nth-child(3) {
            top: 10px;
        }
        
        .burger-menu span:nth-child(4) {
            top: 20px;
        }
        
        .burger-menu.open span:nth-child(1) {
            top: 10px;
            width: 0%;
            left: 50%;
            opacity: 0;
        }
        
        .burger-menu.open span:nth-child(2) {
            transform: rotate(45deg);
        }
        
        .burger-menu.open span:nth-child(3) {
            transform: rotate(-45deg);
        }
        
        .burger-menu.open span:nth-child(4) {
            top: 10px;
            width: 0%;
            left: 50%;
            opacity: 0;
        }
        
        /* Media Query per dispositivi mobili */
        @media screen and (max-width: 768px) {
            .header {
                padding: 8px 20px;
                height: 70px;
                width: 92%;
                justify-content: space-between;
            }
            
            .header-logo {
                width: 180px;
                height: 50px;
                margin: 0;
                order: 1;
            }
            
            .burger-menu {
                order: 2;
                margin-left: auto;
                display: block;
            }
            
            .nav-container {
                position: fixed;
                top: 85px;
                left: 0;
                width: 100%;
                height: auto;
                max-height: calc(100vh - 100px);
                padding: 20px 0;
                background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(240, 240, 240, 0.95));
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                visibility: hidden;
                opacity: 0;
                transform: translateY(-100%);
                transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.3s;
                z-index: 999;
                backdrop-filter: blur(10px);
                box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
                border-radius: 16px;
                margin: 15px;
                width: calc(100% - 30px);
            }
            
            .nav-container.active {
                visibility: visible;
                opacity: 1;
                transform: translateY(0);
            }
            
            .nav-links {
                flex-direction: column;
                gap: 15px;
                padding-top: 10px;
                text-align: center;
                padding: 20px;
                width: 100%;
                opacity: 0;
                transition: opacity 0.3s ease 0.2s;
                justify-content: flex-start;
                align-items: center;
            }
            
            .nav-container.active .nav-links {
                opacity: 1;
            }
            
            .nav-links a {
                font-size: 18px;
                font-weight: 600;
                padding: 12px 20px;
                width: 85%;
                max-width: 260px;
                margin: 0 auto;
                text-align: center;
                color: #0C82C1;
                background: rgba(255, 255, 255, 0.8);
                border-radius: 8px;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
                min-height: 45px;
                justify-content: center;
                align-items: center;
            }
            
            .nav-links a:last-child {
                margin: 15px auto 0;
                position: static;
            }
            
            .nav-links a:hover {
                background: rgba(12, 130, 193, 0.1);
                color: #0C82C1;
                box-shadow: 0 4px 12px rgba(12, 130, 193, 0.1);
            }
            
            .btn-professional {
                width: 100%;
                max-width: 260px;
                margin: 10px auto;
                padding: 14px 24px 14px 65px !important;  /* Ridotto il padding sinistro */
                background: #0C82C1 !important;
                font-size: 14px;  /* Ridotto leggermente il font */
                white-space: nowrap;  /* Forza il testo su una singola riga */
                position: relative;
                display: flex;
                align-items: center;
                justify-content: flex-start;  /* Allineato il testo a sinistra */
            }

            .btn-professional img {
                position: absolute;
                left: 65px;  /* Riposizionato più a sinistra */
                width: 32px;
                height: 32px;
                object-fit: contain;
            }

            .btn-professional:hover {
                background: #0C82C1 !important;
            }
            
            .menu-overlay {
                position: fixed;
                top: 85px;
                left: 0;
                width: 100vw;
                height: calc(100vh - 85px);
                background-color: rgba(0, 0, 0, 0.5);
                z-index: 998;
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.3s ease, visibility 0.3s ease;
            }
            
            .menu-overlay.active {
                opacity: 1;
                visibility: visible;
            }
        }
        
        @media screen and (max-width: 1200px) {
            .header-logo {
                width: 200px;
                height: 55px;
            }
        }

        @media screen and (max-width: 480px) {
            .header {
                padding: 6px 12px;
                height: 50px;
            }

            .header-logo {
                width: 80px;
                height: 40px;
            }

            .logo-standalone {
                width: 80px;
                height: 80px;
                top: 8px;
                left: 0;
            }
        }

        @media screen and (max-width: 320px) {
            .header {
                margin: 8px 8px 8px 50px;
                width: calc(100% - 58px);
                height: 32px;
            }
            
            .logo-standalone {
                width: 40px;
                height: 40px;
                top: 8px;
                left: 0;
            }
        }