body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #0D2137;
    color: #ffffff;
    line-height: 1.6;
}

nav {
    background-color: #0D2137;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #C8A25A;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
}

nav ul li a:hover {
    text-decoration: underline;
}

#hero {
    text-align: center;
    padding: 100px 20px;
    background: #0D2137;
}

#hero .logo {
    width: 200px;
    margin: 0 auto 20px;
}

#hero .tagline {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 20px 0;
}

#hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-block;
    background-color: #C8A25A;
    color: #0D2137;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #b48d4e;
}

.btn.secondary {
    background: transparent;
    border: 2px solid #C8A25A;
    color: #C8A25A;
}

.btn.secondary:hover {
    background-color: #C8A25A;
    color: #0D2137;
}

section {
    padding: 80px 20px;
}

section:nth-of-type(odd) {
    background-color: #11294D;
}

section:nth-of-type(even) {
    background-color: #0D2137;
}

h2 {
    text-align: center;
    color: #C8A25A;
    margin-bottom: 40px;
    font-size: 2rem;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background-color: #1E3A62;
    border-radius: 8px;
    padding: 20px;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.card img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.card h3 {
    color: #C8A25A;
    margin-top: 0;
}

.card a {
    color: #C8A25A;
    text-decoration: none;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #0D2137;
    color: #6b87b8;
    font-size: 0.9rem;
}

/* Profile image on about page */
.profile-img {
    width: 250px;
    height: auto;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Contact form styling */
form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

form label {
    display: block;
    margin-bottom: 5px;
    color: #C8A25A;
    font-weight: bold;
}

form input,
form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: none;
    background-color: #f9f9f9;
    color: #0D2137;
}

form textarea {
    resize: vertical;
    min-height: 150px;
}

form button {
    display: inline-block;
    background-color: #C8A25A;
    color: #0D2137;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #b48d4e;
}

/* Vision section styling for tagline image */
#vision {
    text-align: center;
    padding-top: 60px;
}

#vision img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}