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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 100%);
    font-weight: 400;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #1a1a1a;
    padding: 1.2rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-container {
    width: 100%;
    padding: 0 150px 0 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #1a1a1a;
}

.logo-symbol {
    font-size: 1.8rem; /* Bigger symbol */
    color: #3b82f6;
    font-weight: 300;
}

.tagline {
    display: none; /* Hide subtitle on all devices */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #3b82f6;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.nav-menu a:hover:after {
    width: 100%;
}

/* Prominent Contact Button */
.nav-menu a.nav-cta {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    color: white !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3) !important;
    text-decoration: none !important;
}

.nav-menu a.nav-cta:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4) !important;
}

.nav-menu a.nav-cta:after {
    display: none !important;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59,130,246,0.4) 0%, rgba(139,69,193,0.4) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 120px 0 0 150px;
}

.hero-content {
    backdrop-filter: blur(20px);
    background: rgba(255,255,255,0.95);
    padding: 4rem 3rem;
    border-radius: 32px;
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 30px 80px rgba(0,0,0,0.12), 0 0 0 1px rgba(255,255,255,0.05);
    max-width: 600px;
    text-align: left;
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(139,92,246,0.1));
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-content:hover::before {
    opacity: 1;
}

.hero-content h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #0f172a;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #0f172a 0%, #3b82f6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: #4b5563;
    line-height: 1.75;
    font-weight: 400;
}

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

.btn-primary, .btn-secondary {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: #3b82f6;
    color: white;
    box-shadow: 0 4px 14px rgba(59,130,246,0.25);
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(59,130,246,0.35);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #374151;
    border: 1.5px solid rgba(75,85,99,0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: #3b82f6;
    color: #3b82f6;
}

.chaos-tagline {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    opacity: 0.7;
    font-style: italic;
}

.chaos-tagline span {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 300;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
    animation: subtleGlow 4s ease-in-out infinite;
    backdrop-filter: blur(3px);
    background: rgba(255,255,255,0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

@keyframes subtleGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255,255,255,0.5);
    }
    50% {
        text-shadow: 0 0 15px rgba(102,126,234,0.6), 0 0 20px rgba(255,107,107,0.4);
    }
}

/* Services Section */
.services {
    padding: 120px 0;
    background: #ffffff;
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    color: #0f172a;
    margin-bottom: 4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 1px solid #e1e8ed;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: #cbd5e1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
}

.service-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.service-icon {
    font-size: 2.8rem;
    margin-bottom: 1.8rem;
    opacity: 0.9;
    display: block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.service-card p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Expertise Section */
.expertise {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.expertise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 30% 20%, rgba(59,130,246,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.expertise h2 {
    text-align: center;
    font-size: 3rem;
    color: #0f172a;
    margin-bottom: 4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    position: relative;
}

.expertise h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
    border-radius: 2px;
}

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

.expertise-text h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.expertise-text p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.expertise-text li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.expertise-text li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #ff6b6b;
}

.expertise-stats {
    display: grid;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.stat-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #3b82f6;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* About Section */
.about {
    padding: 120px 0;
    background: white;
}

.about h2 {
    font-size: 3rem;
    color: #0f172a;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    position: relative;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.about-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.highlight {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid transparent;
    border-image: linear-gradient(135deg, #3b82f6, #8b5cf6) 1;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
}

.highlight h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.highlight p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 70% 80%, rgba(139,92,246,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    color: #0f172a;
    margin-bottom: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

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

.contact-info h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
}

.contact-label {
    font-weight: 600;
    color: #2c3e50;
    min-width: 100px;
}

.contact-value {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid #e1e8ed;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.06);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.5), transparent);
}

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

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-info p {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-address {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-services h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-services ul {
    list-style: none;
}

.footer-services li {
    padding: 0.3rem 0;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Navigation Styles */
.mobile-menu-btn,
.mobile-contact-btn,
.mobile-nav-dropdown,
.mobile-stacked {
    display: none; /* Hide on desktop */
}

/* Desktop shows inline version */
.desktop-inline {
    display: inline;
}

@media (max-width: 768px) {
    .header {
        padding: 0.75rem 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 2px solid rgba(59, 130, 246, 0.1);
    }
    
    .nav-container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 1rem;
        padding: 0 16px;
        position: relative;
        max-width: none;
    }
    
    /* Hide desktop menu on mobile */
    .nav-menu {
        display: none;
    }
    
    /* Show mobile elements */
    .mobile-menu-btn,
    .mobile-contact-btn,
    .mobile-stacked {
        display: block;
    }
    
    /* Hide desktop inline version on mobile */
    .desktop-inline {
        display: none;
    }
    
    /* Mobile burger button */
    .mobile-menu-btn {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
        border: 1.5px solid #3b82f6;
        border-radius: 10px;
        padding: 0;
        cursor: pointer;
        font-size: 1.2rem;
        color: #3b82f6;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
        backdrop-filter: blur(10px);
    }
    
    .mobile-menu-btn:hover {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
        border-color: #2563eb;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
    }
    
    .mobile-menu-btn:active {
        transform: translateY(0);
        box-shadow: 0 2px 6px rgba(59, 130, 246, 0.2);
    }
    
    .burger-symbol {
        display: block;
        /* Remove rotation - keep ∞ horizontal */
    }
    
    /* Mobile logo - left aligned after burger */
    .logo {
        grid-column: 2;
        text-align: left;
        padding-left: 0.5rem;
    }
    
    .logo h1 {
        font-size: 1.15rem;
        margin: 0;
        line-height: 1.2;
        color: #0f172a;
        font-weight: 800;
        letter-spacing: -0.01em;
    }
    
    .logo .logo-symbol {
        display: none !important; /* Hide in mobile brand name */
    }
    
    .brand-name {
        font-size: 0.95rem;
        line-height: 1.1;
        text-align: left;
    }
    
    /* Mobile contact button */
    .mobile-contact-btn {
        grid-column: 3;
        background: linear-gradient(135deg, #3b82f6, #2563eb);
        color: white;
        text-decoration: none;
        padding: 0 1rem;
        border-radius: 10px;
        font-size: 0.85rem;
        font-weight: 700;
        box-shadow: 0 3px 8px rgba(59, 130, 246, 0.25);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 80px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }
    
    .mobile-contact-btn:hover {
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(59, 130, 246, 0.35);
    }
    
    .mobile-contact-btn:active {
        transform: translateY(0);
        box-shadow: 0 3px 10px rgba(59, 130, 246, 0.3);
    }
    
    /* Mobile dropdown menu */
    .mobile-nav-dropdown {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
        backdrop-filter: blur(30px);
        border-top: 2px solid rgba(59, 130, 246, 0.2);
        display: none;
        z-index: 999;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mobile-nav-dropdown.active {
        display: block;
    }
    
    .mobile-nav-dropdown.active {
        display: block;
    }
    
    .mobile-nav-dropdown ul {
        list-style: none;
        padding: 1rem 0;
        margin: 0;
    }
    
    .mobile-nav-dropdown li {
        padding: 0;
    }
    
    .mobile-nav-dropdown ul {
        list-style: none;
        padding: 0.5rem 0;
        margin: 0;
    }
    
    .mobile-nav-dropdown a {
        display: flex;
        align-items: center;
        padding: 1rem 24px;
        color: #374151;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        border-bottom: 1px solid rgba(0,0,0,0.04);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }
    
    .mobile-nav-dropdown a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0;
        background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        transition: width 0.3s ease;
    }
    
    .mobile-nav-dropdown a:hover {
        background: rgba(59, 130, 246, 0.05);
        color: #3b82f6;
        padding-left: 32px;
    }
    
    .mobile-nav-dropdown a:hover::before {
        width: 4px;
    }
    
    .mobile-nav-dropdown a:last-child {
        border-bottom: none;
    }
    
    .mobile-nav-dropdown a:first-child {
        border-top: 1px solid rgba(0,0,0,0.04);
    }
    
    .hero {
        min-height: 100vh;
        padding: 0;
    }
    
    .hero-container {
        padding: 120px 20px 80px 20px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        min-height: 100vh;
        display: flex;
    }
    
    .hero-content {
        padding: 2.5rem 2rem;
        max-width: 95%;
        text-align: center;
        border-radius: 24px;
        margin: 0;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
        line-height: 1.15;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .chaos-tagline {
        bottom: 1rem;
        right: 1rem;
    }
    
    .services {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .company-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 80px 0 40px;
        min-height: 70vh;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .services {
        padding: 10px 0 40px 0;
    }
    
    .expertise,
    .about,
    .contact {
        padding: 80px 0;
    }
    
    .services h2,
    .expertise h2,
    .about h2,
    .contact h2 {
        font-size: 2.2rem !important;
        margin-bottom: 3rem !important;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}