* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-blue: #1E5A8E;
            --mesa-sky: #5B9BD5;
            --desert-sand: #D4A574;
            --garcia-red: #C65D47;
            --white: #FFFFFF;
            --off-white: #F8FAFB;
            --light-gray: #E5E7EB;
            --text-dark: #1F2937;
            --text-gray: #6B7280;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Header and Navigation */
        header {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary-blue);
            letter-spacing: -0.5px;
        }
        
        .logo-icon {
            width: 45px;
            height: 45px;
            margin-right: 12px;
            position: relative;
            overflow: hidden;
        }
        
        .logo-icon svg {
            width: 100%;
            height: 100%;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 1.25rem;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-blue);
            transition: width 0.3s;
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        .nav-cta {
            background: var(--primary-blue);
            color: white !important;
            padding: 0.6rem 1.5rem;
            border-radius: 6px;
            transition: all 0.3s;
        }
        
        .nav-cta:hover {
            background: var(--garcia-red);
            transform: translateY(-1px);
        }
        
        .nav-cta:after {
            display: none;
        }
        
        /* Hero Section */
        .hero {
            margin-top: 75px;
            background: linear-gradient(135deg, #0F2847 0%, var(--primary-blue) 100%);
            color: white;
            padding: 5rem 5% 6rem;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: -50%;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat;
            background-size: cover;
            opacity: 0.3;
        }
        
        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
            letter-spacing: -1px;
        }
        
        .hero-text .tagline {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--desert-sand);
            font-weight: 500;
        }
        
        .hero-text p {
            font-size: 1.125rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            line-height: 1.8;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1.25rem;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
            font-size: 1rem;
            letter-spacing: 0.3px;
        }
        
        .btn-primary {
            background: var(--garcia-red);
            color: white;
            box-shadow: 0 4px 14px rgba(198, 93, 71, 0.3);
        }
        
        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .btn:hover {
            transform: translateY(-2px);
        }
        
        .btn-primary:hover {
            box-shadow: 0 6px 20px rgba(198, 93, 71, 0.4);
        }
        
        .btn-secondary:hover {
            background: white;
            color: var(--primary-blue);
        }
        
        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .hero-badge {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            transform: rotate(-5deg);
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: rotate(-5deg) translateY(0); }
            50% { transform: rotate(-5deg) translateY(-10px); }
        }
        
        .badge-number {
            font-size: 4rem;
            font-weight: 700;
            color: var(--desert-sand);
            margin-bottom: 0.5rem;
        }
        
        .badge-text {
            font-size: 1.25rem;
            opacity: 0.9;
        }
        
        /* Key Messages Section */
        .key-messages {
            padding: 5rem 5%;
            background: var(--off-white);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            color: #D4A574;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .section-header p {
            font-size: 1.125rem;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .messages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .message-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            text-align: left;
            transition: all 0.3s;
            border: 1px solid var(--light-gray);
        }
        
        .message-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-color: var(--mesa-sky);
        }
        
        .message-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--mesa-sky), var(--primary-blue));
            border-radius: 12px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            color: white;
        }
        
        .message-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: var(--text-dark);
        }
        
        .message-card p {
            color: var(--text-gray);
            line-height: 1.7;
        }
        
		/* About Section */
.about {
    position: relative;
    background: #1a1a1a;
    overflow: hidden;
}

.about-container {
    position: relative;
    min-height: 900px;
    background-image: 
        linear-gradient(rgba(30, 90, 142, 0.9), rgba(15, 40, 71, 0.95)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 800"><rect fill="%23f0f0f0" width="1440" height="800"/><path fill="%23e0e0e0" d="M0,400 C480,350 960,450 1440,400 L1440,800 L0,800 Z"/><text x="720" y="400" text-anchor="middle" font-family="Arial" font-size="48" fill="%23cccccc">Garcia Family Working Together</text><rect x="300" y="200" width="150" height="200" fill="%23d0d0d0" rx="10"/><rect x="645" y="180" width="150" height="220" fill="%23d0d0d0" rx="10"/><rect x="990" y="200" width="150" height="200" fill="%23d0d0d0" rx="10"/><text x="375" y="310" text-anchor="middle" font-family="Arial" font-size="18" fill="%23999">Carlos</text><text x="720" y="310" text-anchor="middle" font-family="Arial" font-size="18" fill="%23999">Hector</text><text x="1065" y="310" text-anchor="middle" font-family="Arial" font-size="18" fill="%23999">Ramone</text></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 40, 71, 0.95) 0%,
        rgba(30, 90, 142, 0.9) 50%,
        rgba(15, 40, 71, 0.95) 100%
    );
    backdrop-filter: blur(5px);
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.about-text {
    color: white;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 60px;
    bottom: -30px;
    width: 2px;
    background: rgba(212, 165, 116, 0.3);
}

.timeline-year {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--desert-sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: white;
}

.timeline-content p {
    line-height: 1.8;
    opacity: 0.9;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-content: center;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--desert-sand);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--desert-sand);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: white;
    font-size: 0.95rem;
    opacity: 0.9;
}

.family-quote {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.family-quote blockquote {
    font-size: 1.5rem;
    line-height: 1.8;
    color: white;
    margin-bottom: 1rem;
    font-style: italic;
}

.family-quote cite {
    color: var(--desert-sand);
    font-size: 1.1rem;
    font-style: normal;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-item:not(:last-child)::after {
        display: none;
    }
    
    .timeline-year {
        width: 60px;
        height: 60px;
        font-size: 0.8rem;
    }
    
    .family-quote blockquote {
        font-size: 1.25rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
		
        /* Services Section */
        .services {
            padding: 5rem 5%;
            background: white;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        
        .service-card {
            background: white;
            border: 1px solid var(--light-gray);
            border-radius: 16px;
            padding: 2.5rem;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--mesa-sky));
            transform: translateX(-100%);
            transition: transform 0.3s;
        }
        
        .service-card:hover::before {
            transform: translateX(0);
        }
        
        .service-card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transform: translateY(-2px);
        }
        
        .service-number {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: var(--off-white);
            border-radius: 8px;
            text-align: center;
            line-height: 40px;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
        }
        
        .service-card h3 {
            color: var(--text-dark);
            margin-bottom: 1rem;
            font-size: 1.5rem;
            font-weight: 600;
        }
        
        .service-card p {
            color: var(--text-gray);
            line-height: 1.8;
        }
        
        .learn-more-container {
            text-align: center;
        }
        
        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, #0F2847 0%, var(--primary-blue) 100%);
            color: white;
            padding: 5rem 5%;
            position: relative;
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .contact-info {
            padding: 2rem;
        }
        
        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: var(--desert-sand);
        }
        
        .contact-item {
            margin-bottom: 1.5rem;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-item strong {
            display: inline-block;
            min-width: 120px;
            opacity: 0.8;
            font-weight: 500;
        }
        
        .contact-item a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contact-item a:hover {
            color: var(--desert-sand);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 12px;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 600;
        }
        
        .social-links a:hover {
            background: var(--garcia-red);
            transform: translateY(-2px);
            border-color: var(--garcia-red);
        }
        
        .map-container {
            background: white;
            border-radius: 16px;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }
        
        .map-placeholder {
            text-align: center;
            color: var(--text-gray);
        }
        
        .map-placeholder svg {
            width: 80px;
            height: 80px;
            margin-bottom: 1rem;
            opacity: 0.3;
        }
        
        /* Footer */
        footer {
            background: #0A1628;
            color: white;
            padding: 3rem 5%;
            text-align: center;
        }
        
        footer p {
            opacity: 0.8;
            font-size: 0.95rem;
        }
        
        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-text h1 {
                font-size: 2.5rem;
            }
            
            .cta-buttons {
                justify-content: center;
            }
            
            .hero-visual {
                margin-top: 3rem;
            }
            
            .contact-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                gap: 1.5rem;
            }
            
            .nav-links a:not(.nav-cta) {
                display: none;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .hero {
                padding: 3rem 5% 4rem;
            }
            
            .hero-text h1 {
                font-size: 2rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
        }