/* General Body & Typography */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

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

.container {
    width: 80%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

h1, h2, h3 {
    color: #004a99; /* Dark Blue */
    font-weight: 700;
}

h1 { font-size: 2.8em; }
h2 { font-size: 2.2em; text-align: center; margin-bottom: 40px; }
p { font-size: 1.1em; color: #555; }

/* Header & Navigation */
.header {
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8em;
    font-weight: 700;
    color: #004a99;
    text-decoration: none;
}

.nav a {
    color: #333;
    text-decoration: none;
    margin-left: 25px;
    font-size: 1.1em;
    transition: color 0.3s;
}

.nav a:hover {
    color: #007bff; /* Bright Blue */
}

/* Hero Section (Homepage) */
.hero {
    background: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1770&q=80') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 120px 0;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 74, 153, 0.7); /* Dark Blue Overlay */
}

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

.hero h1 {
    color: #fff;
    font-size: 3.5em;
    margin-bottom: 10px;
}

.hero p {
    color: #fff;
    font-size: 1.4em;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #28a745; /* Green */
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #218838; /* Darker Green */
}

/* Sections */
.section {
    padding: 60px 0;
}

.section-light {
    background-color: #ffffff;
}

/* Features Section */
.features-grid {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.feature {
    text-align: center;
    flex-basis: 30%;
}

.feature i {
    font-size: 3em;
    color: #007bff;
    margin-bottom: 20px;
}

/* About Page */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 2;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Contact Page */
.contact-grid {
    display: flex;
    gap: 40px;
}
.contact-info, .contact-map {
    flex: 1;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border:0;
    border-radius: 5px;
}


/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
}

.footer p {
    color: #ccc;
    margin-top: 20px;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container { flex-direction: column; }
    .nav { margin-top: 15px; }
    .nav a { margin: 0 10px; }
    .hero h1 { font-size: 2.5em; }
    .hero p { font-size: 1.2em; }
    .features-grid, .about-content, .contact-grid { flex-direction: column; }
}