body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

header {
    background: #111;
    color: #fff;
    padding: 1em 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header .nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
}

header .nav-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

header .nav-links li a.active {
    text-decoration: underline;
}

.hero {
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hero.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 4em 0;
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3em;
    margin-bottom: 0.5em;
}

.cta-button {
    background: #007bff;
    color: #fff;
    padding: 0.8em 1.5em;
    text-decoration: none;
    border-radius: 5px;
}

.cta-button:hover {
    background: #0056b3;
}

.about, .services, .experience-preview, .insights {
    padding: 2em 0;
    background: #f9f9f9;
}

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

h2 {
    font-family: 'Oswald', sans-serif;
    margin-bottom: 1em;
}

.service-cards, .insight-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    padding: 1.5em;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 250px;
}

footer {
    background: #111;
    color: #fff;
    padding: 1em 0;
    text-align: center;
}

footer .social-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}
