        /* Importa i font da Google Fonts */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@300;400;500&display=swap');

        /* Reset e base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Font per il corpo del testo */
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            font-weight: 400;
            line-height: 1.6;
            background-color: #0a0a0a;
            color: #ffffff;
            overflow-x: hidden;
        }

        .div-footer {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        /* Font per titoli e heading */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .logo,
        .section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            letter-spacing: -0.025em;
        }

        /* Font per codice e dettagli tecnici */
        .code,
        .technical,
        pre,
        code {
            font-family: 'JetBrains Mono', 'Courier New', monospace;
            font-weight: 400;
        }

        /* Font per prezzi e call-to-action */
        .card-price,
        .cta-button {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
        }

        /* Font per navigazione */
        .nav-links a {
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header e navigazione */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .logo:hover {
            transform: translateY(-2px);
            color: #00d4ff;
        }

        .logo-estetics {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .logo:hover .logo-estetics {
            transform: rotate(5deg) scale(1.1);
        }

        /* Navigazione desktop */
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            position: relative;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .nav-links a:hover::before {
            left: 100%;
        }

        .nav-links a:hover {
            color: #00d4ff;
            background: rgba(0, 212, 255, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
        }

        /* Menu mobile */
        .mobile-menu {
            display: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .mobile-menu:hover {
            background: rgba(0, 212, 255, 0.1);
            transform: scale(1.1);
        }

        .hamburger {
            width: 24px;
            height: 3px;
            background: #ffffff;
            position: relative;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger::before,
        .hamburger::after {
            content: '';
            position: absolute;
            width: 24px;
            height: 3px;
            background: #ffffff;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger::before {
            top: -8px;
        }

        .hamburger::after {
            bottom: -8px;
        }

        /* Animazione hamburger quando attivo */
        .mobile-menu.active .hamburger {
            background: transparent;
        }

        .mobile-menu.active .hamburger::before {
            top: 0;
            transform: rotate(45deg);
            background: #00d4ff;
        }

        .mobile-menu.active .hamburger::after {
            bottom: 0;
            transform: rotate(-45deg);
            background: #00d4ff;
        }

        /* Media queries per mobile */
        @media (max-width: 768px) {

            .div-footer {
                display: initial;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: rgba(10, 10, 10, 0.98);
                backdrop-filter: blur(20px);
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                flex-direction: column;
                padding: 2rem 0;
                gap: 0;
                transform: translateY(-100vh);
                opacity: 0;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                pointer-events: none;
            }

            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }

            .nav-links li {
                opacity: 0;
                transform: translateX(-50px);
                animation: slideInLeft 0.5s ease forwards;
            }

            .nav-links.active li:nth-child(1) {
                animation-delay: 0.1s;
            }

            .nav-links.active li:nth-child(2) {
                animation-delay: 0.2s;
            }

            .nav-links.active li:nth-child(3) {
                animation-delay: 0.3s;
            }

            .nav-links.active li:nth-child(4) {
                animation-delay: 0.4s;
            }

            .nav-links.active li:nth-child(5) {
                animation-delay: 0.5s;
            }

            .nav-links a {
                display: block;
                padding: 1rem 2rem;
                font-size: 1.1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                margin: 0;
                border-radius: 0;
                position: relative;
            }

            .nav-links a::after {
                content: '';
                position: absolute;
                left: 0;
                bottom: 0;
                width: 0;
                height: 2px;
                background: linear-gradient(90deg, #00d4ff, #0099cc);
                transition: width 0.3s ease;
            }

            .nav-links a:hover::after {
                width: 100%;
            }

            .mobile-menu {
                display: block;
            }
        }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Sezioni principali */
        .section {
            padding: 6rem 0;
            position: relative;
            min-height: 70vh;
        }

        #home {
            padding-top: 10rem;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2.5rem;
            max-width: 600px;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
            color: #ffffff;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        /* Cards */
        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            min-height: 46vh;

        }

        .card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #00d4ff, #0099cc, #00d4ff);
            border-radius: 18px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .card:hover::before {
            opacity: 1;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 21px 11px rgba(255, 255, 255, 0.8);
        }

        .card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .card:hover .card-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .card-icon svg {
            width: 30px;
            height: 30px;
            fill: #ffffff;
        }

        .card h3 {
            font-size: 28px;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
            font-size: 18px;
            margin-top: 1rem;
        }

        .card-price {
            font-size: 1.5rem;
            color: #00d4ff;
            margin-top: 1.5rem;
            font-weight: 700;
        }

        /* Section titles */
        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Portfolio cards */
        .portfolio-card {
            background: rgba(0, 0, 0, 0.7);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            min-height: 500px;
        }

        .portfolio-card:hover {

            transform: translateY(-10px);
            box-shadow: 0 0 21px 11px rgba(255, 255, 255, 0.8);

        }

        .portfolio-image {
            height: 200px;
            background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .portfolio-content {
            padding: 1.5rem;
        }

        .portfolio-tag {
            background: rgba(0, 212, 255, 0.2);
            color: #00d4ff;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        /* Team cards */
        .team-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            min-height: 28rem;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
        }

        .team-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            overflow: hidden;
            border: 3px solid #00d4ff;
            transition: all 0.3s ease;
        }

        .team-card:hover .team-avatar {
            transform: scale(1.1);
            border-color: #ffffff;
        }

        .img-profile {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-role {
            color: #00d4ff;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        /* Contact section */
        .contact-info {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            transform: translateY(-5px);
            background: rgba(0, 212, 255, 0.1);
            border-color: #00d4ff;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-icon svg {
            width: 24px;
            height: 24px;
            fill: #ffffff;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: #ffffff;
        }

        .social-icon:hover {
            background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
        }

        .social-icon svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        /* Mappa responsive */
        .osm_canvas {
            overflow: hidden;
            background: none !important;
            height: 560px;
            width: 100%;
            max-width: 820px;
        }

        .mapouter {
            position: relative;
            text-align: center;
            height: 560px;
            width: 100%;
            max-width: 820px;
            margin: 0 auto;
        }

        #osm_canvas {
            width: 100% !important;
            max-width: 820px;
            height: 560px;
            border-radius: 35px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .contact-info {
                flex-direction: column;
                align-items: center;
            }

            .cards-container {
                grid-template-columns: 1fr;
            }

            /* Mappa mobile responsive */
            .osm_canvas {
                height: 300px;
                width: 100%;
            }

            .mapouter {
                height: 300px;
                width: 100%;
            }

            #osm_canvas {
                width: 100% !important;
                height: 300px !important;
                border-radius: 20px;
            }
        }

        .titolo-progetti {
            text-align: center;
            font-size: 25px;
            margin-bottom: 8px;
        }


        a:link {
            color: rgb(255, 255, 255);
            background-color: transparent;
            text-decoration: none;
        }

        /* Stili per i link del footer con hover effect */
        footer a:hover {
            color: #00d4ff !important;
            transform: translateX(3px);
        }

        /* Responsive footer */
        @media (max-width: 768px) {
            footer>.container>div:first-child {
                flex-direction: column !important;
                text-align: center;
            }

            footer>.container>div:last-child {
                flex-direction: column !important;
                text-align: center;
                gap: 0.5rem !important;
            }

            footer>.container>div:last-child>div:last-child {
                font-size: 0.8rem !important;
            }
        }