/* Centrar los bloques de información en la sección de contacto */
.hero-contact-options {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 48px; /* Espacio entre los bloques, ajustable */
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 220px;
    max-width: 320px;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
#header {
    width: 100%;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 90px;
    gap: 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1E4E8C;
    text-decoration: none;
    flex: 0 0 auto;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    flex: 1 1 auto;
    justify-content: center;
}

.nav a {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav a:hover,
.nav a.active {
    color: #1E4E8C;
    background: rgba(30, 78, 140, 0.1);
}

.lang-switch {
    color: #555555;
    font-weight: 500;
    flex: 0 0 auto;
    font-size: 1.1rem;
    white-space: nowrap;
}

.lang-switch a {
    color: #555555;
    text-decoration: none;
    margin: 0 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.lang-switch a:hover {
    color: #1E4E8C;
    background: rgba(30, 78, 140, 0.1);
}

/* Footer Styles */
#footer {
    width: 100%;
    background: #1C2B40;
    color: white;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2.5fr 1.2fr 1.2fr 1.8fr;
    gap: 3rem;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: start;
    align-items: start;
}

.footer-column {
    padding: 0.5rem;
    width: 100%;
}

.footer-column:first-child {
    justify-self: start;
}

.footer-column:nth-child(2),
.footer-column:nth-child(3) {
    justify-self: center;
    text-align: center;
}

.footer-column:last-child {
    justify-self: end;
    text-align: right;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    border-bottom: 2px solid #1E4E8C;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
    line-height: 1.5;
}

.footer-column ul li a:hover {
    color: #1E4E8C;
    text-decoration: underline;
}

.footer-column p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-column:first-child p {
    font-size: 0.95rem;
    text-align: justify;
}

.footer-column:last-child p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid #444;
    text-align: center;
    padding: 1.5rem;
    color: #cccccc;
    background: #1a2332;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #1E4E8C;
    color: white;
}

.btn-primary:hover {
    background: #163a6b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #1E4E8C;
    border: 2px solid #1E4E8C;
}

.btn-secondary:hover {
    background: #1E4E8C;
    color: white;
}

.btn-white {
    background: white;
    color: #1E4E8C;
}

.btn-white:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('../img/hero-background.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    color: white;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

/* Steps Section */
.steps {
    padding: 5rem 0;
    background: white;
}

.steps h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #333333;
}

.steps-grid {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.step {
    text-align: center;
    max-width: 300px;
}

.step-icon {
    margin-bottom: 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333333;
}

.step p {
    color: #555555;
    line-height: 1.6;
}

/* Sonia Rodriguez Section */
.about-sonia {
    padding: 5rem 0;
    background: #F8F6F2;
}

.sonia-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.sonia-image {
    flex: 0 0 300px;
}

.sonia-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sonia-text {
    flex: 1;
}

.sonia-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333333;
}

.sonia-text .title {
    font-size: 1.25rem;
    color: #1E4E8C;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.sonia-text p {
    color: #555555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #333333;
}

.testimonials-grid {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    max-width: 350px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #333333;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
}

.testimonial-card p {
    color: #555555;
    line-height: 1.6;
    font-style: italic;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: #1E4E8C;
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
        text-align: center;
    }
    
    .logo {
        font-size: 1.6rem;
        order: 1;
    }
    
    .logo-img {
        height: 65px;
    }
    
    .nav {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
        order: 2;
    }
    
    .nav a {
        font-size: 1rem;
        padding: 0.5rem 0.75rem;
    }
    
    .lang-switch {
        order: 3;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem 1rem;
        text-align: center;
        justify-items: center;
    }
    
    .footer-column {
        text-align: center;
        max-width: 300px;
    }
    
    .footer-column:first-child,
    .footer-column:nth-child(2),
    .footer-column:nth-child(3),
    .footer-column:last-child {
        justify-self: center;
        text-align: center;
    }
    
    .footer-column h4 {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .footer-column:first-child p {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .sonia-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .sonia-image {
        flex: none;
    }
    
    .sonia-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* Services Page Specific Styles */

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, #1E4E8C 0%, #2c5aa0 100%);
    padding: 5rem 0;
    color: white;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-hero-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #FFD700;
}

.stat p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Free Consultation Section */
.free-consultation {
    background: #F8F6F2;
    padding: 4rem 0;
}

.consultation-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.consultation-text {
    flex: 2;
}

.consultation-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.consultation-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
}

.consultation-cta {
    flex: 1;
    text-align: center;
}

.consultation-image {
    margin-bottom: 1.5rem;
}

.consultation-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.consultation-cta .btn {
    display: block;
    margin-bottom: 1rem;
    width: 100%;
}

/* Loan Types Section */
.loan-types {
    padding: 5rem 0;
    background: white;
}

.loan-types h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.loan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.loan-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.loan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #1E4E8C;
}

.loan-card.featured {
    border: 2px solid #1E4E8C;
    transform: scale(1.05);
}

.featured-badge {
    background: #1E4E8C;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 600;
}

.loan-icon {
    margin-bottom: 1.5rem;
}

.loan-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
}

.loan-card p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.loan-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 1rem;
}

.loan-card ul li {
    padding: 0.25rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.loan-card ul li::before {
    content: "✓";
    color: #1E4E8C;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.special-offer {
    background: #f0f8ff;
    border: 1px solid #1E4E8C;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    color: #1E4E8C;
    font-size: 0.9rem;
}

/* Hometown Heroes Section */
.hometown-heroes {
    background: linear-gradient(135deg, #f8f6f2 0%, #e8e6e2 100%);
    padding: 5rem 0;
}

.heroes-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.heroes-text {
    flex: 2;
}

.heroes-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.heroes-text .subtitle {
    font-size: 1.3rem;
    color: #1E4E8C;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.heroes-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.program-benefits h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #1E4E8C;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.benefits-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.benefit {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #1E4E8C;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.benefit strong {
    color: #1E4E8C;
    display: block;
    margin-bottom: 0.5rem;
}

.heroes-cta {
    flex: 1;
}

.heroes-image {
    margin-bottom: 1.5rem;
}

.heroes-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-box {
    background: #1E4E8C;
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(30, 78, 140, 0.3);
}

.cta-box h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Refinancing Section */
.refinancing {
    padding: 5rem 0;
    background: white;
}

.refinancing-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.refinancing-text {
    flex: 1;
}

.refinancing-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.refinancing-text .subtitle {
    font-size: 1.3rem;
    color: #1E4E8C;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.refinancing-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.refinance-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.benefit-item svg {
    flex-shrink: 0;
}

.refinancing-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.refinancing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.refinance-highlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background: rgba(30, 78, 140, 0.9);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.refinance-highlight {
    text-align: center;
    color: white;
}

.refinance-highlight h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.refinance-highlight p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Success Stories Section */
.success-stories {
    background: white;
    padding: 5rem 0;
}

.success-stories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.success-item {
    text-align: center;
    padding: 1rem;
}

.success-image {
    margin-bottom: 1.5rem;
}

.success-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.success-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.success-content p {
    color: #555;
    line-height: 1.6;
}

/* Trust & Statistics Section */
.trust-statistics {
    background: #F8F6F2;
    padding: 5rem 0;
}

.trust-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.trust-image {
    flex: 1;
}

.trust-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.trust-stats {
    flex: 1;
}

.trust-stats h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.trust-stats p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E4E8C;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #555;
    font-weight: 500;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.badge-item {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.badge-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #1E4E8C 0%, #2A5B9B 100%);
    padding: 6rem 0 4rem;
    color: white;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.highlight {
    text-align: center;
}

.highlight h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.highlight p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

/* About Me Section */
.about-me-section {
    padding: 5rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 2rem;
    color: white;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.about-image:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.professional-info h3 {
    font-size: 1.8rem;
    color: #1E4E8C;
    margin-bottom: 1.5rem;
}

.achievements {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.achievements li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

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

.achievements span {
    font-size: 1.1rem;
    color: #333;
}

.question-cta {
    background: #F8F6F2;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #1E4E8C;
}

.question-cta h3 {
    color: #1E4E8C;
    margin-bottom: 1rem;
}

.question-cta p {
    color: #555;
    margin: 0;
}

/* Company Info Section */
.company-info {
    background: #F8F6F2;
    padding: 5rem 0;
}

.company-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.company-text h2 {
    font-size: 2.2rem;
    color: #1E4E8C;
    margin-bottom: 1rem;
}

.company-text h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.company-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.company-motto {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #1E4E8C;
    font-style: italic;
}

.company-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.loan-programs-highlight {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.loan-programs-highlight h4 {
    font-size: 2rem;
    color: #1E4E8C;
    margin-bottom: 0.5rem;
}

.loan-programs-highlight p {
    color: #555;
    margin-bottom: 2rem;
}

.program-types {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.program-tag {
    background: #1E4E8C;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Bilingual Section */
.bilingual-section {
    background: white;
    padding: 5rem 0;
}

.bilingual-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.spanish-content h2 {
    font-size: 2.5rem;
    color: #1E4E8C;
    margin-bottom: 1.5rem;
}

.spanish-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.question-cta-spanish {
    background: #E8F4F8;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #1E4E8C;
}

.question-cta-spanish h3 {
    color: #1E4E8C;
    margin-bottom: 1rem;
}

.question-cta-spanish p {
    color: #555;
    margin: 0;
}

.international-clients h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.international-clients p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.country-item {
    background: #F8F6F2;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    color: #333;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.country-item:hover {
    border-color: #1E4E8C;
    background: white;
    transform: translateY(-2px);
}

/* Contact Info Section */
.contact-info-section {
    background: #1E4E8C;
    padding: 5rem 0;
    color: white;
}

.contact-details {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.contact-card {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-card h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text h3,
.contact-text h4 {
    margin-bottom: 0.5rem;
    color: white;
}

.contact-text p {
    margin: 0;
    opacity: 0.9;
}

.contact-text a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.contact-text a:hover {
    text-decoration: underline;
}

.action-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    color: #333;
    text-align: center;
}

.action-card h3 {
    font-size: 2rem;
    color: #1E4E8C;
    margin-bottom: 1rem;
}

.action-card p {
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.action-buttons .btn {
    width: 100%;
}

.professional-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.badge {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #1E4E8C 0%, #2A5B9B 100%);
    padding: 6rem 0 4rem;
    color: white;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-contact-options {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.contact-option {
    text-align: center;
}

.option-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.contact-option:hover .option-icon {
    transform: scale(1.1);
}

.contact-option h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-option p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: white;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.form-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.consultation-benefits {
    background: #F8F6F2;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #1E4E8C;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-item span {
    color: #333;
    font-weight: 500;
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: #F8F6F2;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form {
    max-width: 100%;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1E4E8C;
}

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-disclaimer {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

/* Direct Contact Section */
.direct-contact-section {
    background: #F8F6F2;
    padding: 5rem 0;
    text-align: center;
}

.direct-contact-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.direct-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 800px;
    margin: 0 auto;
    }
    
    .direct-contact-grid {
        display: flex;
        gap: 32px;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: stretch;
    }
    
    .contact-method {
        flex: 1 1 0;
        max-width: 420px;
        min-width: 320px;
        margin: 0 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

.contact-method {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: #E8F4F8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-method h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.method-info {
    font-size: 1.2rem;
    color: #1E4E8C;
    font-weight: 600;
    margin-bottom: 1rem;
}

.method-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Office Info Section */
.office-info-section {
    padding: 5rem 0;
    background: white;
}

.office-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.office-details h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.office-card {
    background: #F8F6F2;
    padding: 3rem;
    border-radius: 20px;
    border-left: 5px solid #1E4E8C;
}

.office-card h3 {
    font-size: 1.8rem;
    color: #1E4E8C;
    margin-bottom: 2rem;
}

.office-address {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.address-icon {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.address-text p {
    margin: 0;
    color: #333;
    font-weight: 500;
}

.office-hours {
    margin-bottom: 2rem;
}

.office-hours h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.hours-grid {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
}

.day-hours {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.day-hours:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: #333;
}

.hours {
    color: #1E4E8C;
    font-weight: 600;
}

.office-contact {
    margin-bottom: 2rem;
}

.office-contact .contact-item {
    margin-bottom: 0.5rem;
    color: #333;
}

.office-contact a {
    color: #1E4E8C;
    text-decoration: none;
    font-weight: 600;
}

.office-contact a:hover {
    text-decoration: underline;
}

.office-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.office-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.office-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 2rem;
    color: white;
    text-align: center;
}

.office-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.office-overlay p {
    margin: 0;
    opacity: 0.9;
}

/* FAQ Section */
.contact-faq {
    background: #F8F6F2;
    padding: 5rem 0;
}

.contact-faq h2 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #1E4E8C;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Emergency Contact Section */
.emergency-contact {
    background: #1E4E8C;
    padding: 4rem 0;
    color: white;
    text-align: center;
}

.emergency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.emergency-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.emergency-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.emergency-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.emergency-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Fix emergency buttons visibility */
.emergency-contact .btn-secondary {
    background: white;
    color: #1E4E8C;
    border: 2px solid white;
}

.emergency-contact .btn-secondary:hover {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* About Sonia Services Section */
.about-sonia-services {
    background: #F8F6F2;
    padding: 5rem 0;
}

.sonia-services-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.sonia-image {
    flex: 0 0 300px;
}

.sonia-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sonia-text {
    flex: 1;
}

.sonia-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.bilingual-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.spanish-content,
.english-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.spanish-content h3,
.english-content h3 {
    color: #1E4E8C;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background: white;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature p {
    color: #555;
    line-height: 1.6;
}

/* Services CTA Section */
.services-cta {
    background: #1E4E8C;
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Fix button visibility in services CTA */
.services-cta .btn-secondary {
    background: white;
    color: #1E4E8C;
    border: 2px solid white;
}

.services-cta .btn-secondary:hover {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* Mobile Responsive for Services */
@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .consultation-content {
        flex-direction: column;
        text-align: center;
    }
    
    .loan-grid {
        grid-template-columns: 1fr;
    }
    
    .loan-card.featured {
        transform: none;
    }
    
    .heroes-content {
        flex-direction: column;
    }
    
    .refinancing-content {
        flex-direction: column;
    }
    
    .refinancing-image {
        height: 250px;
    }
    
    .sonia-services-content {
        flex-direction: column;
        text-align: center;
    }
    
    .sonia-image {
        flex: none;
    }
    
    .bilingual-content {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .success-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .statistics-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* About Page Mobile Styles */
    .hero-highlights {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        order: 1;
    }
    
    .about-text {
        order: 2;
    }
    
    .company-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .company-actions {
        flex-direction: column;
    }
    
    .bilingual-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .countries-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .action-card {
        order: 1;
    }
    
    .contact-card {
        order: 2;
    }
    
    /* Contact Page Mobile Styles */
    .hero-contact-options {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .direct-contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .office-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .office-image {
        order: 1;
    }
    
    .office-details {
        order: 2;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .emergency-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .steps h2,
    .testimonials h2,
    .cta h2 {
        font-size: 2rem;
    }
    
    .sonia-text h2 {
        font-size: 2rem;
    }
}