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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ddd;
    background: #111;
}

.navbar {
    background: #000;
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #facc15;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.1rem;
    font-weight: bold;
    color: #facc15;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

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

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background: #facc15;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: 0.3s;
}

.btn:hover {
    background: #eab308;
    transform: translateY(-5px);
}

.section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

h2 {
    color: #facc15;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #333;
    transition: 0.3s;
}

.card:hover {
    border-color: #facc15;
    transform: translateY(-10px);
}

.consulting-features ul {
    list-style: none;
}

.consulting-features li {
    background: #1a1a1a;
    padding: 1.2rem;
    border-radius: 6px;
    border-left: 4px solid #facc15;
    margin-bottom: 0.8rem;
}

.footer {
    background: #000;
    color: #aaa;
    text-align: center;
    padding: 3rem 5%;
    border-top: 3px solid #facc15;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    font-size: 1.8rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #000;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding-top: 3rem;
        gap: 2rem;
        transition: all 0.4s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero h1 { font-size: 2.8rem; }
}
