:root {
    --bg: #0a0e14;
    --card-bg: #161b22;
    --text: #ffffff;
    --accent: #0070f3;
    --gold: #d4af37;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 2rem 10%;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.cta-button {
    background: var(--accent);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: 600;
}

.hero {
    text-align: center;
    padding: 100px 10%;
}

h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.highlight {
    color: var(--accent);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.8;
}

.main-btn {
    background: white;
    color: black;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-right: 15px;
}

.sec-btn {
    border: 1px solid white;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
}

#specialties {
    padding: 80px 10%;
    background: #0d1117;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--accent);
}

.gold { color: var(--gold); }

footer {
    text-align: center;
    padding: 50px;
    opacity: 0.6;
}