* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
body {
    line-height: 1.6;
    color: #333;
}
header {
    background: #1a2b49;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
nav {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
nav .logo {
    font-size: 1.8rem;
    font-weight: bold;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}
nav ul li a:hover {
    color: #f4c430;
}
.hero {
    background: url('img/hero1.jpg') no-repeat center/cover;
    color: white;
    text-align: center;
    padding: 5rem 1rem;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.cta-button {
    background: #f4c430;
    color: #1a2b49;
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}
.cta-button:hover {
    background: #e0b000;
}
.section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
}
.services-grid, .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}
.service-card, .team-card {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}
.service-card h3, .team-card h3 {
    color: #1a2b49;
    margin-bottom: 1rem;
}
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.contact-form button {
    background: #1a2b49;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.contact-form button:hover {
    background: #0f1c33;
}
footer {
    background: #1a2b49;
    color: white;
    text-align: center;
    padding: 2rem 0;
}
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        background: #1a2b49;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        display: none;
    }
    nav ul.active {
        display: flex;
    }
    .hamburger {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
}