* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

nav h1 {
    color: #2563eb;
}

.hero {
    text-align: left;
    padding: 8rem 2rem 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #6b7280;
}

button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #1d4ed8;
}

footer {
    text-align: center;
    padding: 2rem;
    background: #f9fafb;
    color: #6b7280;
    margin-top: 4rem;
}

/* Navigation Updates */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
}

.nav-links a:hover {
    color: #2563eb;
}

.cta-nav {
    background: #2563eb;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.3s;
}

.cta-nav:hover {
    background: #1d4ed8;
}

/* Hero Section Updates */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #2563eb;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
}

.services-preview {
    margin: 2rem 0;
}

.services-preview h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.services-preview ul {
    list-style: none;
    padding: 0;
}

.services-preview li {
    padding: 0.5rem 0;
    color: #4b5563;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    background: white;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
}

/* About Section */
.about {
    padding: 4rem 2rem;
    background: #f9fafb;
}

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

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #1f2937;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.about-text h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.expertise-areas, .philosophy {
    margin-top: 2rem;
}

.expertise-areas h4, .philosophy h4 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-badge {
    background: #dbeafe;
    color: #1e40af;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.philosophy li {
    padding: 0.5rem 0;
    color: #4b5563;
}

.about-sidebar {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    height: fit-content;
}

.about-sidebar h4 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.global-presence, .differentiators {
    margin-bottom: 2rem;
}

.timezone-note {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
}

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

.differentiators li {
    padding: 0.5rem 0;
    color: #4b5563;
}

/* Services Section */
.services {
    padding: 4rem 2rem;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #1f2937;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}

.service-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-card p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.service-example {
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
    font-size: 0.9rem;
    color: #1e40af;
}

/* Footer Updates */
footer {
    background: #1f2937;
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 0;
}

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

.contact-info h3, .contact-cta h3 {
    color: white;
    margin-bottom: 1rem;
}

.contact-info p, .contact-cta p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding
