        .footer {
            background: #276052;
            color: white;
            padding: 60px 0 30px;
            position: relative;
            overflow: hidden;
        }


        .container-footer {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1000;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .logo-footer {
            display: flex;
            align-items: center;
            margin-bottom: 0px;
        }
.footer-logo-sx {
            width: 200px;
           height: auto;
        }

.logo-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .logo-icon i {
            font-size: 28px;
            color: #ffffff;
        }

        .brand-text h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 5px;
            letter-spacing: 2px;
            
        }

        .brand-text p {
            font-size: 14px;
            opacity: 0.8;
            font-style: italic;
        }

        .company-name {
            font-size: 16px;
            margin-top: 0px;
            opacity: 0.9;
            font-family: 'jost';
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .social-links a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .footer-section h4 {
    display: inline-block; /* Riduce la larghezza del titolo al testo */
    position: relative;
    text-align: center;
    margin-bottom: 25px;
    font-family: 'Jost';
}

.footer-section h4::after {
    content: '';
    display: block;
    width: 100%; /* Larghezza della linea = larghezza del titolo */
    height: 2px;
    background: white;
    margin: 10px auto 0 auto; /* Centra la linea */
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* Centra esattamente sotto il titolo */
}
        .contact-info div {
            margin-bottom: 12px;
            font-size: 14px;
            opacity: 0.9;
        }

        .contact-info strong {
            display: block;
            margin-bottom: 4px;
            color: #e6b700;
        }

        .support-links {
            list-style: none;
        }

        .support-links li {
            margin-bottom: 12px;
        }

        .support-links a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            opacity: 0.9;
            transition: all 0.3s ease;
            display: block;
            padding: 5px 0;
        }

        .support-links a:hover {
            opacity: 1;
            color: #93c5fd;
            padding-left: 10px;
        }

        .company-details {
            font-size: 13px;
            line-height: 1.6;
            opacity: 0.9;
        }

        .company-details div {
            margin-bottom: 8px;
        }

      .footer-middle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    justify-items: center; /* Centra gli elementi della griglia orizzontalmente */
    align-items: start; /* Allinea gli elementi all'inizio verticalmente */
}
.footer-middle .footer-section {
    text-align: center; /* Centra il testo all'interno di ogni sezione */
}
        .payment-section h4,
        .certifications h4 {
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 20px;
            letter-spacing: 1px;
            text-align: left;
            font-family: 'Jost';
        }

        .payment-icons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .payment-icons img {
            width: 50px;
            height: 40px;
            background: transparent;
            border-radius: 6px;
            padding: 4px;
            object-fit: contain;
        }

        .cert-badges {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .cert-badge {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cert-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .cert-icon i {
            color: #22c55e;
            font-size: 20px;
        }

        .cert-text {
            font-size: 12px;
            opacity: 0.9;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 13px;
            opacity: 0.8;
        }

        .footer-bottom-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 15px;
        }

        .footer-bottom-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #93c5fd;
        }

        @media (max-width: 768px) {
            .footer-top {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-middle {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-bottom-links {
                flex-direction: column;
                gap: 15px;
            }

            .payment-icons {
                justify-content: center;
            }

            .cert-badges {
                justify-content: center;
            }
            .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-logo-sx {
    width: 130px;
    height: auto;
}
        }