.error-content h1 {
        font-size: 5rem;
    }
    
    .error-content h2 {
        font-size: 2rem;
    }
    
    .error-links {
        flex-direction: column;
        align-items: center;
    }/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background-color: #f8f9fa;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h1 {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #2c3e50;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
.main {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    background-color: #f8f9fa;
    text-align: center;
    padding: 3rem 0;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    color: #6c757d;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2c3e50;
    color: white;
}

.btn-primary:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #2c3e50;
}

/* Directions Grid */
.directions {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.directions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.direction-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.direction-card:hover {
    transform: translateY(-5px);
}

.direction-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.direction-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Services */
.services-list {
    padding: 4rem 0;
}

.services {
    list-style: none;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.service-item {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
}

.service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-item p {
    color: #6c757d;
    margin-bottom: 1rem;
}

.service-details {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #868e96;
    flex-wrap: wrap;
}

/* Limitations */
.limitations {
    max-width: 800px;
    margin: 3rem auto;
}

.limitations h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.limitation-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 5px;
    padding: 1.5rem;
}

.limitation-box p {
    margin-bottom: 1rem;
}

.limitation-box p:last-child {
    margin-bottom: 0;
}

/* About Content */
.about-content {
    padding: 4rem 0;
}

.about-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.approach,
.important-note {
    max-width: 800px;
    margin: 3rem auto;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.approach h3,
.important-note h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.approach ul {
    list-style-position: inside;
    color: #6c757d;
}

.approach li {
    margin-bottom: 0.5rem;
}

/* Contact Info Section */
.contact-info-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.contact-info-main {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info-main h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-5px);
}

.contact-method-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.whatsapp-link {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.whatsapp-link:hover {
    background: #20b358;
    transform: scale(1.05);
}

.contact-method-card small {
    display: block;
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.contact-notice {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    text-align: left;
}

.contact-notice h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-notice ul {
    list-style-position: inside;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.contact-notice li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.contact-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.contact-disclaimer p {
    margin: 0;
    color: #856404;
    font-weight: 500;
}

/* Error Page (404) */
.error-page {
    padding: 6rem 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-content h1 {
    font-size: 8rem;
    color: #667eea;
    margin-bottom: 1rem;
    font-weight: 700;
}

.error-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.error-content p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.error-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.error-disclaimer p {
    margin: 0;
    color: #856404;
    font-weight: 500;
}

/* Legal Content */
.legal-content {
    padding: 4rem 0;
}

.legal-nav {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    position: sticky;
    top: 100px;
}

.legal-nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-nav a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.legal-nav a:hover {
    background-color: #667eea;
    color: white;
}

.legal-section {
    max-width: 800px;
    margin: 3rem auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.legal-section h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #667eea;
}

.legal-section h3 {
    color: #2c3e50;
    margin: 2rem 0 1rem;
    font-size: 1.2rem;
}

.legal-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #333;
}

.legal-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 3rem;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    text-align: center;
}

.footer-disclaimer {
    background-color: #34495e;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.footer-disclaimer p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-copy {
    font-size: 0.85rem;
    color: #95a5a6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #f8f9fa;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .directions-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .legal-nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .directions,
    .services-list,
    .about-content,
    .contact-info-section,
    .legal-content {
        padding: 2rem 0;
    }
    
    .direction-card,
    .service-item,
    .contact-method-card {
        padding: 1.5rem;
    }
    
    .service-details {
        flex-direction: column;
        gap: 0.5rem;
    }
}