    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        line-height: 1.6;
        background: linear-gradient(135deg, #e6f0fa 0%, #d3e0f7 100%);
        /* Softer, lighter gradient */
        min-height: 100vh;
        overflow-x: hidden;
        color: #1a1a1a;
        /* Dark text for readability */
    }

    /* Animated background particles */
    .bg-particles {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: -1;
    }

    .particle {
        position: absolute;
        background: rgba(0, 0, 0, 0.1);
        /* Darker particles for contrast */
        border-radius: 50%;
        animation: float 6s ease-in-out infinite;
    }

    .particle:nth-child(1) {
        width: 20px;
        height: 20px;
        left: 10%;
        animation-delay: 0s;
    }

    .particle:nth-child(2) {
        width: 15px;
        height: 15px;
        left: 20%;
        animation-delay: 2s;
    }

    .particle:nth-child(3) {
        width: 25px;
        height: 25px;
        left: 70%;
        animation-delay: 4s;
    }

    .particle:nth-child(4) {
        width: 18px;
        height: 18px;
        left: 80%;
        animation-delay: 1s;
    }

    .particle:nth-child(5) {
        width: 22px;
        height: 22px;
        left: 40%;
        animation-delay: 3s;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px) rotate(0deg);
            opacity: 0.7;
        }

        50% {
            transform: translateY(-20px) rotate(180deg);
            opacity: 1;
        }
    }

    /* Header */
    header {
        background: rgba(255, 255, 255, 0.9);
        /* Nearly opaque white for clarity */
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    header::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(0, 0, 0, 0.05), transparent);
        animation: shine 3s ease-in-out infinite;
    }

    @keyframes shine {
        0% {
            transform: translateX(-100%) translateY(-100%) rotate(45deg);
        }

        50% {
            transform: translateX(100%) translateY(100%) rotate(45deg);
        }

        100% {
            transform: translateX(-100%) translateY(-100%) rotate(45deg);
        }
    }

    .header-content {
        position: relative;
        z-index: 2;
    }

    h1 {
        color: #1a1a1a;
        /* Dark text for readability */
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        animation: slideDown 1s ease-out;
    }

    .subtitle {
        color: #333;
        /* Darker subtitle for contrast */
        font-size: 1.3rem;
        font-weight: 300;
        letter-spacing: 1px;
        animation: slideUp 1s ease-out 0.3s both;
    }

    .languages {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-top: 1rem;
        animation: fadeIn 1s ease-out 0.6s both;
    }

    .language-tag {
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        padding: 0.5rem 1.5rem;
        border-radius: 25px;
        color: #1a1a1a;
        font-weight: 500;
        border: 1px solid rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }

    .language-tag:hover {
        transform: translateY(-3px);
        background: rgba(0, 0, 0, 0.15);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .whatsapp-header {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 1rem;
        animation: fadeIn 1s ease-out 0.8s both;
    }

    .whatsapp-link {
        color: #011203;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.1rem;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        background-color: #C0C0C0;
        border-radius: 25px;
        transition: all 0.3s ease;
    }

    .whatsapp-link:hover {
        background: rgba(255, 255, 255, 1);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    /* Main content */
    .container {
        max-width: 1200px;
        margin: 4rem auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        animation: slideUp 0.8s ease-out 0.9s both;
    }

    .card {
        background: rgba(255, 255, 255, 0.95);
        /* Nearly opaque white for readability */
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 2.5rem;
        border: 1px solid rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
        transition: left 0.6s ease;
    }

    .card:hover::before {
        left: 100%;
    }

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        border-color: rgba(0, 0, 0, 0.2);
    }

    .card h2 {
        color: #1a1a1a;
        font-size: 2rem;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .card p,
    .card li {
        color: #333;
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .services-list {
        list-style: none;
        padding: 0;
    }

    .services-list li {
        background: rgba(0, 0, 0, 0.05);
        margin: 0.8rem 0;
        padding: 1rem 1.5rem;
        border-radius: 12px;
        border-left: 4px solid #007bff;
        /* Brighter blue for visibility */
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .services-list li:hover {
        background: rgba(0, 0, 0, 0.1);
        transform: translateX(10px);
    }

    /* Map section */
    .map-container {
        width: 100%;
        height: 400px;
        border-radius: 15px;
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.1);
        margin-top: 1.5rem;
    }

    /* Contact section */
    .contact-full {
        grid-column: 1 / -1;
        text-align: center;
    }

    .contact-methods {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .contact-item {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        padding: 1.5rem;
        border-radius: 15px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .contact-item:hover {
        background: rgba(255, 255, 255, 1);
        transform: scale(1.05);
    }

    .contact-item h3 {
        color: #1a1a1a;
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

    .contact-link {
        color: #007bff;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .contact-link:hover {
        color: #0056b3;
        text-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
    }

    /* Footer */
    footer {
        background: rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        text-align: center;
        padding: 2rem;
        margin-top: 4rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    footer p {
        color: #333;
        font-size: 1rem;
    }

    /* Animations */
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-50px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /* Icons */
    .icon {
        width: 24px;
        height: 24px;
        fill: currentColor;
    }

    /* Responsive design */
    @media (max-width: 768px) {
        h1 {
            font-size: 2.5rem;
        }

        .subtitle {
            font-size: 1.1rem;
        }

        .container {
            grid-template-columns: 1fr;
            gap: 2rem;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        .card {
            padding: 2rem 1.5rem;
        }

        .languages {
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .whatsapp-header {
            flex-direction: column;
            gap: 1rem;
        }

        .contact-methods {
            grid-template-columns: 1fr;
        }

        .map-container {
            height: 300px;
        }
    }
    /* Dark Mode Styles */
    body.dark-mode {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        color: #e2e8f0;
    }

    body.dark-mode .particle {
        background: rgba(255, 255, 255, 0.05);
    }

    body.dark-mode header {
        background: rgba(15, 23, 42, 0.9);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    body.dark-mode h1 {
        color: #f8fafc;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    body.dark-mode .subtitle {
        color: #cbd5e1;
    }

    body.dark-mode .language-tag {
        background: rgba(255, 255, 255, 0.1);
        color: #f1f5f9;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    body.dark-mode .language-tag:hover {
        background: rgba(255, 255, 255, 0.15);
    }

    body.dark-mode .card,
    body.dark-mode .contact-item {
        background: rgba(30, 41, 59, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    body.dark-mode .card h2,
    body.dark-mode .contact-item h3 {
        color: #f8fafc;
    }

    body.dark-mode .card p,
    body.dark-mode .card li {
        color: #cbd5e1;
    }

    body.dark-mode .services-list li {
        background: rgba(255, 255, 255, 0.05);
    }

    body.dark-mode .services-list li:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    body.dark-mode footer p {
        color: #94a3b8;
    }

    body.dark-mode .contact-link {
        color: #60a5fa;
    }

    body.dark-mode .contact-link:hover {
        color: #93c5fd;
    }

/* --- New Hero Banner Styles (Code Wiki Inspired) --- */

.glass-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: inherit;
    opacity: 0.9;
}

.nav-logo img {
    width: 28px;
    height: 28px;
}

.hero-section {
    position: relative;
    min-height: 85vh; /* Tall banner */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
    /* Reset original header styles if needed, though class specificity helps */
    background: transparent;
    border-bottom: none;
    margin-bottom: 2rem;
}

/* The Glow Effect */
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.01) 60%, transparent 100%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-content {
    max-width: 800px;
    z-index: 10;
    animation: fadeUp 0.8s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #4b5563;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-badge {
    padding: 0.5rem 1rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0,0,0,0.05);
    backdrop-filter: blur(5px);
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Styled Action Bar (replaces Search Bar) */
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.6);
    padding: 0.5rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    max-width: fit-content;
    margin: 0 auto;
}

.hero-btn {
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

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

.hero-btn.secondary {
    background: transparent;
    color: #1a1a1a;
}

.hero-btn:hover {
    transform: translateY(-1px);
}

.hero-btn.primary:hover {
    background: #333;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-btn.secondary:hover {
    background: rgba(0,0,0,0.05);
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .glass-nav { padding: 1rem; }
    .hero-title { font-size: 3rem; }
    .hero-section { min-height: 70vh; padding-top: 4rem; }
    .hero-actions { flex-direction: column; background: transparent; box-shadow: none; border: none; }
    .hero-btn { width: 100%; justify-content: center; box-shadow: 0 4px 6px rgba(0,0,0,0.05); background: white; }
    .hero-btn.primary { background: #1a1a1a; }
}

/* Dark Mode Updates for Hero */
body.dark-mode .hero-title {
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.dark-mode .hero-subtitle {
     color: #94a3b8;
}

body.dark-mode .hero-badge {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(255,255,255,0.1);
    color: #cbd5e1;
}

body.dark-mode .hero-actions {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(255,255,255,0.1);
}

body.dark-mode .hero-btn.primary {
    background: #3b82f6; /* A brighter blue for dark mode actions */
    color: white;
}

body.dark-mode .hero-btn.secondary {
    color: #e2e8f0;
}

body.dark-mode .hero-btn.primary:hover {
    background: #2563eb;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

body.dark-mode .hero-btn.secondary:hover {
    background: rgba(255,255,255,0.05);
}

body.dark-mode .hero-glow {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.05) 50%, transparent 80%);
}


.color-bends-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}
