body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    color: #222;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar {
    background: #1a2340;
    color: #fff;
    padding: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.navbar .logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffd700;
    display: inline-block;
    border: none;
    background: none;
    box-shadow: none;
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}
.navbar nav {
    margin-left: auto;
    float: none;
    border: none;
    background: none;
    box-shadow: none;
}
.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}
.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.navbar a:hover {
    color: #ffd700;
}

.hero {
    background: linear-gradient(120deg, #1a2340 70%, #ffd700 100%);
    color: #fff;
    padding: 5rem 0 4rem 0;
    text-align: center;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}
.cta-btn {
    background: #ffd700;
    color: #1a2340;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-block;
}
.cta-btn:hover {
    background: #1a2340;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.about, .services, .team, .testimonials, .contact {
    padding: 4rem 0 3rem 0;
    background: #fff;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(26,35,64,0.07);
}
.about h2, .services h2, .team h2, .testimonials h2, .contact h2 {
    color: #1a2340;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.service-item {
    background: #f8f9fa;
    border: 2px solid #1a2340;
    border-radius: 8px;
    padding: 2rem;
    flex: 1 1 250px;
    max-width: 350px;
    min-width: 220px;
    text-align: center;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(26,35,64,0.05);
}
.service-item h3 {
    color: #1a2340;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.team-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.team-member {
    background: #f8f9fa;
    border: 2px solid #ffd700;
    border-radius: 8px;
    padding: 2rem 1rem;
    flex: 1 1 200px;
    max-width: 250px;
    min-width: 180px;
    text-align: center;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(26,35,64,0.05);
}
.team-member img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #1a2340;
}
.team-member h3 {
    color: #1a2340;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.testimonial-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.testimonial-item {
    background: #f8f9fa;
    border-left: 5px solid #ffd700;
    border-radius: 8px;
    padding: 2rem;
    flex: 1 1 300px;
    max-width: 400px;
    min-width: 220px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(26,35,64,0.05);
    font-style: italic;
}
.testimonial-item span {
    display: block;
    margin-top: 1rem;
    color: #1a2340;
    font-weight: 700;
    font-size: 1rem;
}

.contact form {
    max-width: 500px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(26,35,64,0.05);
    border: 2px solid #1a2340;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a2340;
    font-weight: 500;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: #ffd700;
    outline: none;
}
.contact form .cta-btn {
    display: block;
    margin: 1.5rem auto 0 auto;
}

.footer {
    background: #1a2340;
    color: #fff;
    padding: 2rem 0 1rem 0;
    text-align: center;
    border-top: 4px solid #ffd700;
}
.footer nav ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.footer nav a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
}
.footer nav a:hover {
    text-decoration: underline;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    background: #ffd700;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 900px) {
    .service-list, .team-list, .testimonial-list {
        flex-direction: column;
        align-items: center;
    }
    .navbar nav {
        float: none;
        margin-top: 1rem;
    }
    .navbar ul {
        flex-direction: column;
        gap: 1rem;
    }
    .hamburger {
        display: block;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .navbar nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: #1a2340;
        width: 100%;
        max-width: 300px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
        z-index: 1000;
        margin-left: 0;
    }
    .navbar nav.open {
        display: flex;
    }
    .navbar ul {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    .navbar nav ul li {
        width: 100%;
    }
    .navbar nav ul li a {
        width: 100%;
        display: block;
        padding: 0.5rem 0;
    }
}

@media (max-width: 600px) {
    .container {
        width: 98%;
        padding: 0 0.5rem;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .about, .services, .team, .testimonials, .contact {
        padding: 2rem 0 1.5rem 0;
    }
} 