
        :root {
            --bg-color: #F6FBF7;
            --primary-color: #2ECC71;
            --secondary-color: #1E8449;
            --accent-color: #A3E4D7;
            --text-color: #2C3E50;
            --light-gray: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
            color: var(--secondary-color);
        }
        
        /* Navbar Styles */
        .navbar {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: var(--text-color) !important;
            margin: 0 10px;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .btn-quote {
            background: var(--primary-color);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            font-weight: 500;
        }
        
        .btn-quote:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(46, 204, 113, 0.8), rgba(30, 132, 73, 0.8)), url('https://blog.egade.tec.mx/hubfs/VEC/Imported_Blog_Media/Maestri%CC%81a%20en%20Finanzas%20EGADE.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            text-align: center;
        }
        
        .hero-section h1 {
            font-size:5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }
        
        .hero-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-hero {
            background: white;
            color: var(--primary-color);
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-block;
            border: none;
        }
        
        .btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            color: var(--secondary-color);
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 50px;
            text-align: center;
            position: relative;
            color: var(--secondary-color);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary-color);
        }
        
        /* About Section */
        .about-content h3 {
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .about-content p {
            margin-bottom: 15px;
            color: var(--text-color);
        }
        
        .btn-about {
            background: var(--primary-color);
            color: white;
            padding: 10px 30px;
            border-radius: 25px;
            text-decoration: none;
            display: inline-block;
            margin-top: 20px;
            transition: all 0.3s ease;
        }
        
        .btn-about:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateX(5px);
        }
        
        /* Counter Section */
        .counter-section {
            background: var(--secondary-color);
            color: white;
            padding: 60px 0;
        }
        
        .counter-box {
            text-align: center;
            padding: 20px;
        }
        
        .counter-box i {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 15px;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .counter-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Vision & Mission Cards */
        .vision-mission-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vision-mission-card:hover {
            transform: translateY(-5px);
        }
        
        .vision-mission-card i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        /* Feature Boxes */
        .feature-box {
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .feature-box i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .feature-box h4 {
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        /* Timeline */
        .timeline {
            position: relative;
            padding: 20px 0;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--primary-color);
            transform: translateX(-50%);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 50px;
        }
        
        .timeline-number {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            z-index: 1;
        }
        
        .timeline-content {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            width: 45%;
            margin-left: auto;
        }
        
        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: 0;
            margin-right: auto;
        }
        
        /* Service Cards */
        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .service-card img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 25px;
        }
        
        .service-card-body h4 {
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .btn-service {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            display: inline-block;
            margin-top: 15px;
            transition: color 0.3s ease;
        }
        
        .btn-service:hover {
            color: var(--secondary-color);
        }
        
        /* Booking Form */
        .booking-form {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
        }
        
        .form-control, .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 12px;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(46, 204, 113, 0.25);
        }
        
        .btn-submit {
            background: var(--primary-color);
            color: white;
            padding: 12px 40px;
            border-radius: 25px;
            border: none;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .btn-submit:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }
        
        /* Review Cards */
        .review-card {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
        }
        
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }
        
        .review-stars {
            color: #ffc107;
        }
        
        /* FAQ Accordion */
        .accordion-button {
            background: var(--accent-color);
            color: var(--secondary-color);
            font-weight: 500;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--primary-color);
            color: white;
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 10px;
            border-radius: 10px !important;
            overflow: hidden;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .btn-cta {
            background: white;
            color: var(--primary-color);
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        
        /* Contact Section */
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 15px;
            width: 40px;
        }
        
        /* Footer */
        footer {
            background: var(--secondary-color);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-widget h4 {
            color: white;
            margin-bottom: 20px;
        }
        
        .footer-widget ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-widget ul li {
            margin-bottom: 10px;
        }
        
        .footer-widget ul li a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-widget ul li a:hover {
            color: var(--accent-color);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 15px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 5px 0 0 5px;
        }
        
        .newsletter-form button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background: var(--accent-color);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-bottom a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            margin-left: 20px;
            transition: color 0.3s ease;
        }
        
        .footer-bottom a:hover {
            color: var(--accent-color);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .timeline::before {
                left: 30px;
            }
            
            .timeline-number {
                left: 30px;
            }
            
            .timeline-content {
                width: calc(100% - 60px);
                margin-left: 60px !important;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-bottom a {
                margin: 5px 10px;
            }
        }

        /* Process Flow Styles */
.process-flow {
    position: relative;
    margin: 60px 0;
}

.process-flow-line {
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #2ECC71 0%, #A3E4D7 100%);
    z-index: 1;
    border-radius: 2px;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.15);
}

.process-icon-wrapper {
    position: relative;
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
}

.process-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: #1E8449;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.process-step h4 {
    color: #2C3E50;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.process-step p {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.6;
    flex-grow: 1;
}

.process-arrow {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    color: #2ECC71;
    font-size: 24px;
    opacity: 0;
    transition: all 0.3s ease;
}

.process-step:hover .process-arrow {
    opacity: 1;
    right: -30px;
}

/* Process Summary Styles */
.process-summary {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: 40px;
}

.summary-item {
    padding: 20px;
    border-radius: 10px;
    background: #F6FBF7;
    transition: all 0.3s ease;
}

.summary-item:hover {
    background: #2ECC71;
    color: white;
    transform: translateY(-5px);
}

.summary-item i {
    font-size: 36px;
    color: #2ECC71;
    margin-bottom: 15px;
    display: block;
    transition: all 0.3s ease;
}

.summary-item:hover i {
    color: white;
    transform: scale(1.1);
}

.summary-item h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2C3E50;
    transition: all 0.3s ease;
}

.summary-item:hover h5 {
    color: white;
}

.summary-item p {
    font-size: 14px;
    margin: 0;
    color: #7f8c8d;
    transition: all 0.3s ease;
}

.summary-item:hover p {
    color: rgba(255,255,255,0.9);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .process-flow-line {
        display: none;
    }
    
    .process-arrow {
        display: none;
    }
    
    .process-step {
        margin-bottom: 30px;
    }
    
    .process-step:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 576px) {
    .process-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .process-number {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .process-step h4 {
        font-size: 16px;
    }
    
    .process-step p {
        font-size: 13px;
    }
}

/* AOS Animation Support */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}
