/* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .reviews-container {
            background: white !important;
            padding: 2rem;
            }
        /* About Viktor Section */
        .about-viktor {
            padding: 6rem 0;
            background: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 2fr 1fr; /* Ajustado para dar más espacio al texto */
            gap: 4rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--federal-blue);
            margin-bottom: 2rem;
        }

        .about-text h3 {
            font-size: 1.5rem;
            color: var(--pacific-cyan);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            color: var(--text-light);
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .highlight {
            color: var(--federal-blue);
            font-weight: 600;
        }

        .about-image {
            text-align: center;
            position: relative;
        }

        .about-image img {
            width: 100%;
            /* Eliminado max-width para que la imagen llene su columna asignada */
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .experience-badge {
            position: absolute;
            top: -20px;
            right: 20px;
            background: linear-gradient(135deg, var(--pacific-cyan), var(--honolulu-blue));
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .experience-badge .number {
            font-size: 2rem;
            font-weight: 700;
            display: block;
        }

        .experience-badge .text {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Values Section */
        .values {
            padding: 6rem 0;
            background: var(--light-cyan);
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--federal-blue);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }

        .value-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 15px 50px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 186, 216, 0.1);
            position: relative;
            overflow: hidden;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, var(--pacific-cyan), var(--honolulu-blue));
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(0,0,0,0.15);
        }

        .value-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--pacific-cyan), var(--honolulu-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2.5rem;
            color: white;
        }

        .value-card h3 {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--federal-blue);
            margin-bottom: 1.5rem;
        }

        .value-card p {
            color: var(--text-light);
            line-height: 1.8;
            font-size: 1.1rem;
        }

        /* Process Section */
        .process {
            padding: 6rem 0;
            background: white;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .process-step::after {
            content: '';
            position: absolute;
            top: 50px;
            right: -50%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--pacific-cyan), transparent);
            z-index: 1;
        }

        .process-step:last-child::after {
            display: none;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--federal-blue), var(--honolulu-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            position: relative;
            z-index: 2;
        }

        .process-step h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--federal-blue);
            margin-bottom: 1rem;
        }

        .process-step p {
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Stats Section */
        .stats {
            padding: 4rem 0;
            background: linear-gradient(135deg, var(--federal-blue), var(--honolulu-blue));
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--light-cyan);
        }

        .stat-item p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--federal-blue), var(--honolulu-blue));
            color: white;
            text-align: center;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }


        .btn {
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--pacific-cyan), var(--honolulu-blue));
            color: white;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--honolulu-blue), var(--federal-blue));
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }


        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--federal-blue);
            transform: translateY(-3px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--federal-blue);
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }

            .page-header h1 {
                font-size: 2.5rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .about-image {
                order: -1;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .process-grid {
                grid-template-columns: 1fr;
            }

            .process-step::after {
                display: none;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }

            .page-header h1 {
                font-size: 2rem;
            }

            .about-text h2 {
                font-size: 2rem;
            }

            .value-card {
                padding: 2rem 1.5rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }
            .reviews {
             padding: 60px 20px;
             background-color: #ffffff;
             color: #fff;
            text-align: center;
            }

            .review {
             max-width: 700px;
             margin: 30px auto;
             padding: 25px;
             background-color: #ffffff;
             border-radius: 12px;
             box-shadow: 0 0 20px rgb(255, 255, 255);
            }

            .review-header {
                display: flex;
                justify-content: space-between;
                margin-bottom: 15px;
                font-size: 18px;
            }

            .stars {
                 color: #FFD700;
                font-size: 18px;
            }
             }
            .reviews-button {
                margin-top: 50px;
                margin-bottom: 20px;
                 display: flex;
                justify-content: center;
            }