 /* ========================================
           ABOUT US SECTION - SPLIT SCREEN
           ======================================== */
        .about-section {
            display: grid;
            padding: 80px;
            grid-template-columns: 1fr 1fr;
            min-height: 500px;
            background: #f8f9fa;
        }

        /* Colonna Immagine */
       .about-image {
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(74, 158, 187, 0.9), transparent);
            padding: 30px;
            color: white;
        }

        .about-image-overlay h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .about-image-overlay p {
            font-size: 1.1rem;
            opacity: 0.95;

        }

        /* Colonna Testo */
        .about-content {
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: white;
        }

       .about-label {
    color: #4a9ebb;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 15px;
}

        .about-content h2 {
            font-size: 2.5rem;
            font-family: 'Neutraface Text', sans-serif;
            color: #0c354d;
            margin-bottom: 25px;
            line-height: 1.2;
            font-weight: 700;
        }

        .about-content h2 span {
            color: #4a9ebb;
        }

        .about-text {
            font-size: 1.3rem;
            font-family: 'Neutraface Text', sans-serif;
            color: #555;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .about-highlight {
            background: #f0f8ff;
            border-left: 4px solid #4a9ebb;
            padding: 20px 25px;
            margin: 0px 0;
            font-style: italic;
            font-size: 1.2rem;
            font-family: 'Neutraface Text', sans-serif;
            color: #333;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 30px 0;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #208ccd, #42a3cb);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .feature-text h4 {
            font-family: 'Neutraface Text', sans-serif;
            font-size: 1.3rem;
            color: #1a1a1a;
            margin-bottom: 5px;
        }

        .feature-text p {
            font-size: 1.1rem;
            color: #666;
            font-family: 'Neutraface Text', sans-serif;
        }

        .about-cta {
            margin-top: 30px;
        }

        .btn-primary {
            display: inline-block;
            background: #0b8ac7;
            color: white;
            padding: 15px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(74, 158, 187, 0.3);
        }

        .btn-primary:hover {
            background: #357a96;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(74, 158, 187, 0.4);
        }

        .btn-primary i {
            margin-left: 8px;
        }

        /* ========================================
           RESPONSIVE DESIGN
           ======================================== */
        @media (max-width: 1024px) {
            .about-section {
                grid-template-columns: 1fr;
            }

            .about-image {
                min-height: 400px;
            }

            .about-content {
                padding: 40px 30px;
            }

            .about-content h2 {
                font-size: 2rem;
            }

            .about-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .about-content {
                padding: 30px 20px;
            }

            .about-content h2 {
                font-size: 1.8rem;
            }

            .about-text {
                font-size: 1rem;
            }

            .about-image-overlay {
                padding: 20px;
            }

            .about-image-overlay h3 {
                font-size: 1.4rem;
            }

            .about-image-overlay p {
                font-size: 0.95rem;
            }

            .about-section {
    padding: 20px;
   
}
        }

        /* ========================================
           ANIMAZIONI
           ======================================== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .about-section > * {
            animation: fadeInUp 0.9s ease-out forwards;
            opacity: 0;
        }

        .about-label { animation-delay: 0.1s; }
        .about-content h2 { animation-delay: 0.2s; }
        .about-text:nth-of-type(1) { animation-delay: 0.3s; }
        .about-text:nth-of-type(2) { animation-delay: 0.4s; }
        .about-highlight { animation-delay: 0.5s; }
        .about-features { animation-delay: 0.6s; }
        .about-cta { animation-delay: 0.7s; }
        .about-image { animation-delay: 0.4s; }
