        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #2c3e50;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .parkinsans-header650 {
            font-family: "Parkinsans", sans-serif;
            font-optical-sizing: auto;
            font-weight: 650;
            font-style: normal;
        }

        .parkinsans-header547 {
            font-family: "Parkinsans", sans-serif;
            font-optical-sizing: auto;
            font-weight: 547;
            font-style: normal;
        }

        .edu-sa-hand-500 {
            font-family: "Edu SA Hand", cursive;
            font-optical-sizing: auto;
            font-weight: 500;
            font-style: normal;
        }

        .dynapuff-500 {
            font-family: "DynaPuff", system-ui;
            font-optical-sizing: auto;
            font-weight: 500;
            font-style: normal;
            font-variation-settings: "wdth" 100;
        }

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 3px solid #e74c3c;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            position: relative;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            background: linear-gradient(45deg, #e74c3c, #f39c12, #9b59b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #e74c3c;
            transform: translateY(-2px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #e74c3c, #f39c12);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Mobile menu toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #2c3e50;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
            padding: 0 20px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="3" fill="rgba(255,255,255,0.05)"/><circle cx="60" cy="30" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1000px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: slideUp 1s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero p {
            font-size: clamp(1.1rem, 3vw, 1.5rem);
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: slideUp 1s ease-out 0.3s both;
        }

        .cta-button {
            background: linear-gradient(45deg, #e74c3c, #f39c12);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: clamp(1rem, 2.5vw, 1.1rem);
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
            animation: slideUp 1s ease-out 0.6s both;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.6);
        }
        /* About Section */
        .about {
            padding: 100px 0;
            background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
            background-image: url("./images/potrait.jpeg");
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
        }

        .about-image:hover {
            transform: scale(1.05);
        }

        .about-text h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 2rem;
            background: linear-gradient(45deg, #e74c3c, #9b59b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-text p {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            margin-bottom: 1.5rem;
            color: #2c3e50;
        }
                .lavoro {
            padding: 100px 0;
            background: linear-gradient(135deg, #ffee99 0%, #fff6cc 50%, #fff6cc 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
    
        }
        
        /* Gallery Carousel */
        .gallery {
            padding: 100px 0;
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
        }

        .gallery h2 {
            text-align: center;
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 3rem;
            background: linear-gradient(45deg, #e74c3c, #f39c12, #9b59b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .quote {
            padding: 100px 0;
            background: linear-gradient(135deg, #c8b6ff 0%, #b8d0eb 100%);
        }

        .quote h2 {
            text-align: center;
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 3rem;
            background: linear-gradient(45deg, #e74c3c, #f39c12, #9b59b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }


        .carousel {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .carousel-container {
            display: flex;
            transition: transform 0.5s ease;
        }

        .carousel-slide {
            min-width: 100%;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            position: relative;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

        .slide1 { background: linear-gradient(45deg, #667eea, #764ba2); }
        .slide2 { background: linear-gradient(45deg, #f093fb, #f5576c); }
        .slide3 { background: linear-gradient(45deg, #4facfe, #00f2fe); }
        .slide4 { background: linear-gradient(45deg, #43e97b, #38f9d7); }
        .slide5 { background: linear-gradient(45deg, #667eea, #764ba2); }
        .slide6 { background: linear-gradient(45deg, #f093fb, #f5576c); }
        .slide7 { background: linear-gradient(45deg, #4facfe, #00f2fe); }
        .slide8 { background: linear-gradient(45deg, #43e97b, #38f9d7); }
        .slide9 { background: linear-gradient(45deg, #667eea, #764ba2); }
        .slide10 { background: linear-gradient(45deg, #43e97b, #38f9d7); }
        .slide11 { background: linear-gradient(45deg, #667eea, #764ba2); }
        .slide19 { background: linear-gradient(45deg, #667eea, #764ba2); }

        .about-text{
                max-width: 80%;
        }
        .about-text p{
    text-align: left;
    margin-left: 30px;

}
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.8);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .carousel-nav:hover {
            background: rgba(255,255,255,0.9);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-nav.prev { left: 20px; }
        .carousel-nav.next { right: 20px; }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #e74c3c;
            transform: scale(1.2);
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
        }

        .services h2 {
            text-align: center;
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 3rem;
            background: linear-gradient(45deg, #e74c3c, #f39c12);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: rgba(255,255,255,0.9);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 3px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: #e74c3c;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .service-card h3 {
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            margin-bottom: 1rem;
        }

        .service-card p {
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .contact h2 {
            text-align: center;
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 3rem;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-form {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 10px;
            background: rgba(255,255,255,0.9);
            font-size: 1rem;
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(45deg, #e74c3c, #f39c12);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
        }

        .contact-info h3 {
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            margin-bottom: 1rem;
        }

        .contact-info p {
            margin-bottom: 1rem;
            font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        }

        .contact-info a {
            color: white;
            text-decoration: underline;
        }

        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        /* Image scaling classes */
        .img50 {
            transform: scale(0.5);
            transform-origin: center;
        }

        .img40 {
            transform: scale(0.4);
            transform-origin: center;
        }

        .img250 {
            transform: scale(2.5);
            transform-origin: center;
        }
 .social {
    background: #2c3e50;
    padding: 4rem 1rem;
    text-align: center;
  }

  .social-text {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #e8ebef;
  }

  .collegamenti {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
  }

  .social-link {
    background-color: #e8ebef;
    color: #2c3e50;
    width: clamp(2.5rem, 8vw, 3rem);
    height: clamp(2.5rem, 8vw, 3rem);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease-in-out;
    font-size: clamp(1rem, 3vw, 1.25rem);
    position: relative;
    overflow: visible;
    border: 2px solid gray;
  }

  .social-link svg {
    width: 60%;
    height: 60%;
    stroke: #2c3e50;
  }

  .social-link::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
  }

  .social-link:hover::before,
  .social-link:focus::before {
    opacity: 1;
  }

  .social-link.facebook:hover::before {
    box-shadow: 0 0 40px 10px rgba(24, 119, 242, 0.9);
  }

  .social-link.instagram:hover::before {
    box-shadow: 0 0 40px 10px rgba(255, 140, 0, 0.9);
  }
.social-link.facebook:hover{
    background-color: hsl(223, 100%, 91%);
}
  .social-link.instagram:hover {
   background-color: hsl(36, 100%, 76%);
  }
  .social-link.facebook {
    stroke: #1877F2;
  }

  .social-link.instagram {
    stroke: #ff8c00;
  }
        /* Responsive Design */
        
        /* Large tablets and small desktops */
        @media (max-width: 1024px) {
            .container {
                padding: 0 15px;
            }
            
            .about-content {
                gap: 3rem;
            }
            
            .contact-content {
                gap: 3rem;
            }
            
            .carousel {
                max-width: 600px;
            }
            
            .carousel-slide {
                height: 400px;
            }
        }

        /* Tablets */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(255, 255, 255, 0.98);
                flex-direction: column;
                padding: 1rem 0;
                box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .logo {
                font-size: 1.4rem;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-image {
                height: 380px;
                order: -1;
            }

            .carousel {
                max-width: 500px;
            }

            .carousel-slide {
                height: 350px;
            }

            .carousel-nav {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .carousel-nav.prev { left: 10px; }
            .carousel-nav.next { right: 10px; }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .service-card {
                padding: 1.5rem;
            }

            .contact-form {
                padding: 1.5rem;
            }
        }

        /* Mobile phones */
        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }

            .hero {
                padding: 0 15px;
            }

            .logo {
                font-size: 1.2rem;
            }

            nav {
                padding: 0.8rem 0;
            }

            .about,
            .gallery,
            .services,
            .contact {
                padding: 60px 0;
            }

            .about-image {
                height: 320px;
            }

            .carousel {
                max-width: 100%;
                margin: 0 10px;
            }

            .carousel-slide {
                height: 280px;
            }

            .carousel-nav {
                display: none;
            }

            .carousel-dots {
                gap: 8px;
                margin-top: 15px;
            }

            .dot {
                width: 10px;
                height: 10px;
            }

            .service-card {
                padding: 1.2rem;
            }

            .service-icon {
                font-size: 2.5rem;
            }

            .contact-form {
                padding: 1.2rem;
            }

            .form-group input,
            .form-group textarea {
                padding: 10px;
            }

            .submit-btn {
                padding: 10px 20px;
                font-size: 1rem;
            }

            /* Image scaling adjustments for mobile */
            .img50 {
                transform: scale(0.8);
            }

            .img40 {
                transform: scale(0.7);
            }

            .img250 {
                transform: scale(1.5);
            }
        }

        /* Extra small devices */
        @media (max-width: 320px) {
            .logo {
                font-size: 1rem;
            }

            .carousel-slide {
                height: 220px;
            }

            .about-image {
                height: 200px;
            }

            .service-icon {
                font-size: 2rem;
            }

            .img50 {
                transform: scale(1);
            }

            .img40 {
                transform: scale(0.9);
            }

            .img250 {
                transform: scale(1.2);
            }
        }

        /* Touch device optimizations */
        @media (hover: none) and (pointer: coarse) {
            .carousel-nav {
                display: none;
            }

            .service-card:hover {
                transform: none;
            }

            .about-image:hover {
                transform: none;
            }

            .cta-button:hover {
                transform: none;
            }

            .submit-btn:hover {
                transform: none;
            }
        }

        /* High DPI displays */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .hero::before {
                background-size: 50px 50px;
            }
        }

        /* Landscape orientation on mobile */
        @media (max-width: 768px) and (orientation: landscape) {
            .hero {
                min-height: 100vh;
                padding: 80px 20px 20px;
            }

            .carousel-slide {
                height: 250px;
            }
        }

        /* Print styles */
        @media print {
            .carousel-nav,
            .carousel-dots,
            .mobile-menu-toggle {
                display: none;
            }

            .hero {
                min-height: auto;
                padding: 2rem 0;
            }

            .about,
            .gallery,
            .services,
            .contact {
                padding: 2rem 0;
            }
        }

