    body,
    html {
        font-family: 'Inter', sans-serif;
        background-color: #f8f9fa;
    }

    .hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://placehold.co/1920x600/343a40/ffffff?text=NOSOTROS');
        background-size: cover;
        background-position: center;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .mvv-section-container {
        background-color: #ffffff;
        border-radius: 1rem;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
        padding: 2.5rem;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .mvv-item {
        padding: 1.5rem 1rem;
        text-align: center;
        flex: 1;
        border-right: 1px solid #eee;
    }

    .mvv-item:last-child {
        border-right: none;
    }

    .mvv-item-icon {
        width: 80px;
        height: 80px;
        font-size: 3rem;
        background-color: var(--bs-light);
        color: var(--bs-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem auto;
        box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
        flex-shrink: 0;
    }

    .mvv-item:hover .mvv-item-icon {
        background-color: var(--bs-primary);
        color: white;
        transform: scale(1.05);
    }

    .mvv-item h3 {
        font-weight: bold;
        color: var(--bs-dark);
        margin-bottom: 0.75rem;
    }

    .mvv-item p {
        color: var(--bs-secondary);
        line-height: 1.6;
        font-size: 0.95rem;
    }

    .mvv-item ul {
        list-style: none;
        padding-left: 0;
        text-align: left;
    }

    .mvv-item ul li {
        color: var(--bs-secondary);
        line-height: 1.5;
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .mvv-item ul li strong {
        color: var(--bs-dark);
    }

    .timeline-section {
        position: relative;
        padding-top: 3rem;
        padding-bottom: 3rem;
        background-color: #f8f9fa;
    }

    .timeline {
        position: relative;
        margin-left: 50px;
        padding-left: 0;
    }

    .timeline::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 4px;
        background-color: #dee2e6;
        left: 0;
        border-radius: 2px;
    }

    .timeline-item {
        position: relative;
        margin-bottom: 3.5rem;
        padding-left: 20px;
    }

    .timeline-item:last-child {
        margin-bottom: 0;
    }

    .timeline-dot {
        position: absolute;
        width: 25px;
        height: 25px;
        background-color: var(--bs-primary);
        border: 4px solid #f8f9fa;
        border-radius: 50%;
        left: -12px;
        top: 0;
        box-shadow: 0 0 0 4px #dee2e6;
        transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    }

    .timeline-item:hover .timeline-dot {
        background-color: var(--bs-success);
        box-shadow: 0 0 0 4px var(--bs-primary);
        transform: scale(1.2);
    }

    .timeline-content {
        background-color: #ffffff;
        border-radius: 0.75rem;
        box-shadow: 0 0.35rem 1rem rgba(0, 0, 0, 0.1);
        padding: 1.5rem;
        text-align: left;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .timeline-item:hover .timeline-content {
        transform: translateY(-8px);
        box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.18);
    }

    .timeline-content h3 {
        font-size: 1.6rem;
        font-weight: bold;
        color: var(--bs-dark);
        margin-bottom: 0.5rem;
    }

    .timeline-content p {
        font-size: 1rem;
        color: var(--bs-secondary);
        line-height: 1.6;
    }

    .story-img {
        max-height: 400px;
        object-fit: cover;
    }

    .social-icons-row .social-icon-link {
        color: var(--bs-secondary);
        font-size: 2.5rem;
        transition: transform 0.2s ease, color 0.2s ease;
    }

    .social-icons-row .social-icon-link:hover {
        transform: translateY(-5px);
    }

    .social-icons-row .social-icon-link.bi-facebook:hover {
        color: #1877F2;
    }

    .social-icons-row .social-icon-link.bi-instagram:hover {
        background: -webkit-linear-gradient(#fdf497, #fd5949, #d6249f, #285AEB);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }

    .social-icons-row .social-icon-link.bi-twitter-x:hover {
        color: #000000;
    }

    .social-icons-row .social-icon-link.bi-whatsapp:hover {
        color: #25D366;
    }

    @media (max-width: 991.98px) {

        .hero-section h1 {
            font-size: 2.8rem;
        }

        .hero-section p {
            font-size: 1.2rem;
        }

        .mvv-section-container {
            padding: 1.5rem;
        }

        .mvv-item {
            border-right: none;
            border-bottom: 1px solid #eee;
            padding-bottom: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .mvv-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .mvv-item-icon {
            width: 70px;
            height: 70px;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .mvv-item h3 {
            font-size: 1.3rem;
        }

        .mvv-item p,
        .mvv-item ul li {
            font-size: 0.9rem;
        }

        .timeline-section {
            padding-left: 15px;
            padding-right: 15px;
        }

        .timeline {
            margin-left: 20px;
        }

        .timeline-item {
            padding-left: 30px;
            margin-bottom: 2rem;
        }

        .timeline-dot {
            width: 20px;
            height: 20px;
            left: -9px;
        }

        .timeline-content {
            padding: 1rem;
        }

        .timeline-content h3 {
            font-size: 1.3rem;
        }

        .timeline-content p {
            font-size: 0.85rem;
        }
    }

    @media (max-width: 767.98px) {

        .hero-section {
            padding: 4rem 0;
        }

        .hero-section h1 {
            font-size: 2.2rem;
        }

        .hero-section p {
            font-size: 1rem;
        }

        .faq-section,
        .returns-section,
        .contact-section,
        .timeline-section {
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .accordion-button {
            padding: 1rem 1.2rem;
        }

        .contact-section h2 {
            font-size: 1.8rem;
        }

        .contact-section p.lead {
            font-size: 0.9rem;
        }

        .social-icons-row .social-icon-link {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .mvv-item {
            padding-bottom: 1rem;
            margin-bottom: 1rem;
        }
    }