/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    text-align: center;
}

header {
    background: #002244;
    color: white;
    padding: 15px 0;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: url('../images/hero.jpg') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
}

.hero .btn {
    background: #f90;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.hero .btn-secondary {
    background: #555;
}

/* Sections */
section {
    padding: 50px 0;
}

/* Services */
.grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.card {
    background: #f4f4f4;
    padding: 20px;
    width: 30%;
}

/* Contact Form */
.contact input, .contact textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

.contact button {
    background: #f90;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

/* Footer */
footer {
    background: #002244;
    color: white;
    padding: 10px 0;
}
.offices {
    background-color: #f9f9f9;
    padding: 50px 0;
}

.offices h2 {
    margin-bottom: 30px;
}

.address-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.address-card {
    background: white;
    padding: 20px;
    width: 30%;
    min-width: 250px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 5px;
}

.address-card h3 {
    margin-top: 0;
    color: #002244;
}
.clients {
    background-color: #eef1f5;
    padding: 50px 0;
}

.clients h2 {
    margin-bottom: 30px;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.client-name {
    background: white;
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    font-weight: bold;
    color: #002244;
    font-size: 16px;
    min-width: 200px;
    text-align: center;
}
