<style>
         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #FF9800;
            --primary-dark: #F57C00;
            --primary-light: #FFE0B2;
            --secondary: #37474F;
            --secondary-light: #546E7A;
            --accent: #00BCD4;
            --dark: #263238;
            --gray-dark: #37474F;
            --gray-medium: #78909C;
            --gray-light: #B0BEC5;
            --bg-light: #FAFAFA;
            --white: #FFFFFF;
            --border: #ECEFF1;
            --success: #4CAF50;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--gray-dark);
            background: var(--white);
        }

        /* Header */
        .header {
            background: #f9f9f9;
            padding: 1.2rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

    .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 90px;
            width: auto;
            max-width: 190px;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--gray-dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .cta-button {
            background: var(--primary);
            color: var(--white);
            padding: 0.7rem 1.8rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: background 0.3s;
        }

        .cta-button:hover {
            background: var(--primary-dark);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
            color: var(--white);
            padding: 80px 2rem 70px;
            margin-top: 100px;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            font-weight: 700;
            letter-spacing: -1px;
        }

        .hero-text p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--white);
            padding: 1.1rem 2.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: background 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            padding: 1.1rem 2.5rem;
            border: 2px solid var(--white);
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }

        .hero-stats {
            max-width: 1200px;
            display: grid;
            margin: 0 auto;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
            align-items: center;
        }

        .stat-item {
            text-align: center;
            padding: 0.3rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.95rem;
            opacity: 0.9;
        }

        .hero-image {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hero-image img {
    max-width: 95%; /* ¡CRUCIAL! La imagen no excede el ancho de su contenedor */
    height: auto; /* Mantiene la proporción */
    border-radius: 12px; 
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15); 
}

        /* Trust Bar */
        .trust-bar {
            background: var(--bg-light);
            padding: 2rem;
            border-bottom: 1px solid var(--border);
        }

        .trust-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .trust-icon {
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: var(--white);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .trust-text strong {
            display: block;
            color: var(--dark);
            font-size: 1.1rem;
        }

        .trust-text small {
            color: var(--gray-medium);
            font-size: 0.9rem;
        }

        /* Services Section */
        .services {
            padding: 100px 2rem;
            background: var(--white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .section-header p {
            font-size: 1.15rem;
            color: var(--gray-medium);
            line-height: 1.7;
        }

        .services-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--white);
            padding: 2.5rem;
            border: 1px solid var(--border);
            border-radius: 4px;
            transition: border-color 0.3s;
        }

        .service-card:hover {
            border-color: var(--primary);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--primary);
            color: var(--white);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--dark);
            font-weight: 600;
        }

        .service-card p {
            color: var(--gray-medium);
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .service-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .service-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .service-features li {
            padding: 0.6rem 0;
            color: var(--gray-dark);
            border-bottom: 1px solid var(--border);
            font-size: 0.95rem;
        }

        .service-features li:last-child {
            border-bottom: none;
        }

        .service-features li::before {
            content: "✓";
            color: var(--primary);
            font-weight: bold;
            margin-right: 0.8rem;
        }

        .service-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .service-link:hover {
            color: var(--primary-dark);
        }

        /* Why Us Section */
        
        
        
        
        .why-us {
            padding: 100px 2rem;
            background: var(--bg-light);
        }

        .why-us-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
        }

.why-us-content {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }



        .feature-card {
            text-align: center;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--primary);
            color: var(--white);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
        }

        .feature-card h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--dark);
            font-weight: 600;
        }

        .feature-card p {
            color: var(--gray-medium);
            line-height: 1.7;
        }

        /* Testimonials */
        .testimonials {
            padding: 100px 2rem;
            background: var(--white);
        }

        .testimonials-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: var(--white);
            padding: 2.5rem;
            border: 1px solid var(--border);
            border-radius: 4px;
        }

        .stars {
            color: var(--primary);
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
        }

        .testimonial-text {
            color: var(--gray-dark);
            font-style: italic;
            margin-bottom: 2rem;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: var(--white);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .author-info h4 {
            color: var(--dark);
            margin-bottom: 0.3rem;
            font-weight: 600;
        }

        .author-info p {
            color: var(--gray-medium);
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            padding: 100px 2rem;
            text-align: center;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .urgency-tag {
            background: var(--white);
            color: var(--primary-dark);
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            display: inline-block;
            font-weight: 600;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        /* Contact Section */
        .contact {
            padding: 100px 2rem;
            background: var(--bg-light);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--dark);
            font-weight: 700;
        }

        .contact-info p {
            color: var(--gray-medium);
            margin-bottom: 2.5rem;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .contact-details {
            list-style: none;
        }

        .contact-details li {
            padding: 1.2rem 0;
            display: flex;
            align-items: center;
            gap: 1rem;
            border-bottom: 1px solid var(--border);
        }

        .contact-icon {
            width: 45px;
            height: 45px;
            background: var(--primary);
            color: var(--white);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-form {
            background: var(--white);
            padding: 3rem;
            border: 1px solid var(--border);
            border-radius: 4px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--dark);
            font-weight: 600;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.9rem;
            border: 1px solid var(--border);
            border-radius: 4px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: var(--primary);
            color: var(--white);
            padding: 1rem 3rem;
            border: none;
            border-radius: 4px;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: background 0.3s;
        }

        .submit-btn:hover {
            background: var(--primary-dark);
        }

        /* Footer */
        .footer {
            background: var(--dark);
            color: var(--white);
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            color: var(--primary);
            font-weight: 600;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            padding: 0.4rem 0;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .social-icon:hover {
            background: var(--primary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 250px;
            height: 60px;
            background: ##25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            z-index: 999;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }
       
       .whatsapp-icon-img {
    /* 💥 PROPIEDADES DE TAMAÑO CLAVE 💥 */
    width: 100%; 
    height: 100%;
    max-width: 300px; /* Limita el tamaño real de la imagen dentro del contenedor */
    max-height: 300px; /* Limita el tamaño real de la imagen dentro del contenedor */
    
    /* Opcional: Centrar la imagen dentro de su contenedor (si no usa 100%) */
    object-fit: contain; 
    
    /* Opcional: Dar un pequeño margen interno si la imagen es un SVG sin espacio */
    padding: 5px; /* Esto asegura que la imagen no se pegue al borde del círculo de 60px */
}
       
       
        
            /* Sistema de Modales */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 9998;
            backdrop-filter: blur(3px);
        }

        .modal-overlay.active {
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }

        .modal {
            background: white;
            border-radius: 8px;
            width: 90%;
            max-width: 600px;
            max-height: 85vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.3s ease;
        }

        .modal-header {
            padding: 1.5rem 2rem;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--bg-light);
        }

        .modal-header h3 {
            margin: 0;
            font-size: 1.5rem;
            color: var(--dark);
            font-weight: 600;
        }

        .modal-close {
            width: 35px;
            height: 35px;
            border: none;
            background: transparent;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--gray-medium);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            transition: all 0.3s;
        }

        .modal-close:hover {
            background: var(--border);
            color: var(--dark);
        }

        .modal-body {
            padding: 2rem;
        }

        .modal-body p {
            line-height: 1.7;
            color: var(--gray-medium);
            margin-bottom: 1rem;
        }

        .modal-body h4 {
            color: var(--dark);
            margin-top: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .modal-footer {
            padding: 1.5rem 2rem;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: flex-end;
            gap: 1rem;
            background: var(--bg-light);
        }

        .modal-btn {
            padding: 0.7rem 1.8rem;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 0.95rem;
        }

        .modal-btn-primary {
            background: var(--primary);
            color: white;
        }

        .modal-btn-primary:hover {
            background: var(--primary-dark);
        }

        .modal-btn-secondary {
            background: transparent;
            color: var(--gray-medium);
            border: 1px solid var(--border);
        }

        .modal-btn-secondary:hover {
            background: var(--bg-light);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        
        

        /* Responsive */
        
        
        
        
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
.hero-content {
        flex-direction: row; /* CAMBIA a Fila: Texto izquierda, Imagen derecha */
    }

    .hero-text {
        text-align: left; /* Alinea el texto a la izquierda en escritorio */
    }
            .hero-content,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-stats {
                grid-template-columns: 1fr;
            }

            .services-grid,
            .why-us-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .trust-content {
                flex-direction: column;
                gap: 2rem;
            }
        }
        
            .testimonials-section {
            background: var(--light);
            padding: 60px 20px;
            position: relative;
        }

        .testimonials-wrapper {
            max-width: 1100px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-tag {
            display: inline-block;
            color: var(--secondary);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .section-title {
            font-size: 32px;
            color: var(--dark);
            font-weight: 700;
            margin-bottom: 12px;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--gray-medium);
            max-width: 600px;
            margin: 0 auto;
        }

        .google-rating-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--white);
            padding: 10px 20px;
            border-radius: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            margin-top: 15px;
        }

        .google-icon {
            width: 20px;
            height: 20px;
        }

        .rating-stars {
            color: #FFA500;
            font-size: 14px;
            letter-spacing: 1px;
        }

        .rating-number {
            font-weight: 600;
            color: var(--dark);
            font-size: 14px;
        }

        .testimonials-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
            margin-bottom: 30px;
        }

        .testimonial-card {
            background: var(--white);
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
            border: 1px solid rgba(30, 58, 138, 0.08);
            position: relative;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(30, 58, 138, 0.12);
            border-color: var(--accent);
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 18px;
            font-weight: 600;
            flex-shrink: 0;
        }

        .user-info {
            flex: 1;
        }

        .user-name {
            font-size: 16px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 2px;
        }

        .stars {
            color: #FFA500;
            font-size: 14px;
            letter-spacing: 1px;
        }

        .testimonial-text {
            color: var(--gray-dark);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 12px;
        }

        .card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12px;
        }

        .testimonial-date {
            color: var(--gray-medium);
        }

        .google-badge {
            display: flex;
            align-items: center;
            gap: 4px;
            color: var(--secondary);
            font-weight: 500;
        }

        .google-badge svg {
            width: 14px;
            height: 14px;
        }

        .cta-banner {
            background: linear-gradient(135deg, #6b7280 0%, #6b7280 100%);
            border-radius: 12px;
            padding: 32px;
            text-align: center;
            color: var(--white);
            box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
        }

        .cta-banner h3 {
            font-size: 22px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .cta-banner p {
            font-size: 15px;
            opacity: 0.9;
            margin-bottom: 20px;
        }

        .cta-buttons {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 12px 28px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-light {
            background: var(--white);
            color: var(--primary);
        }

        .btn-light:hover {
            background: var(--light);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255,255,255,0.2);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--primary);
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .testimonials-section {
                padding: 40px 15px;
            }

            .section-title {
                font-size: 26px;
            }

            .testimonials-container {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .cta-banner {
                padding: 24px 20px;
            }

            .cta-banner h3 {
                font-size: 20px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }
        }    
        
        .service-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

#nosotros.why-us {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('image/nosotros.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

/* Asegura que los textos sean blancos */
#nosotros.why-us h2,
#nosotros.why-us h3,
#nosotros.why-us p {
    color: white;
}

/* Si las tarjetas tienen fondo, puedes hacer que sean semi-transparentes */
#nosotros.why-us .feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}


    </style>