/* style.css */

:root {
    --primary-color: #003366; /* Navy Blue */
    --secondary-color: #007bff; /* Bright Blue for accents */
    --text-color: #333;
    --light-bg: #f8f8f8;
    --white: #fff;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

/* Header and Navigation */
header {
    background-color: var(--white);
    padding: 15px 5%;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

nav a {
    margin-left: 25px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: url('placeholder-flags.jpg') no-repeat center center/cover; /* Placeholder for a patriotic image */
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

/* Main Content Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-size: 2em;
}

/* Home Page - Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
    padding: 40px 0;
}

.service-item {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: var(--light-bg);
}

.service-item h3 {
    color: var(--secondary-color);
    margin-top: 0;
}

/* Team Page */
.team-member {
    display: flex;
    margin-bottom: 40px;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.team-member:nth-child(even) {
    flex-direction: row-reverse;
}

.team-info {
    padding: 0 30px;
}

.team-info h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.team-photo {
    width: 150px;
    height: 150px;
    background-color: #ccc; /* Placeholder for photo */
    border-radius: 50%;
    flex-shrink: 0;
}

/* Contact Page */
.contact-offices {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    padding: 40px 0;
}

.office {
    flex: 1;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: var(--light-bg);
}

.office h3 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    margin-top: 0;
}

.office p {
    margin: 5px 0;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
    font-size: 0.9em;
}
