/* General Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Header and Navigation */
header {
    background-color: #003366;  /* Dark Blue */
    color: #ffffff;
    padding: 20px;
    text-align: center;
    font-size: 2em;
    font-weight: bold;
}

nav {
    display: flex;
    justify-content: space-around;
    background-color: #005499;
    padding: 10px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: bold;
}

nav a:hover {
    background-color: #003366;
}

/* Hero Section */
.hero {
    background-image: url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
    padding: 150px 20px;
    font-size: 2.5em;
    font-weight: bold;
}

/* Content Sections */
.section {
    padding: 40px;
    max-width: 1200px;
    margin: auto;
}

.section h2 {
    color: #003366;
    margin-bottom: 20px;
}

.section p {
    line-height: 1.6;
}

.feature {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.feature img {
    max-width: 100%;
    height: auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #003366;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
