body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fdfdfd;
    color: #1a1a1a;
    line-height: 1.6;
}

#contact {
   background-color: #0d1b2a;
    color: #fdfcf8;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Segoe UI', Arial, sans-serif;
}

#contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fdfcf8;
}

#contact p {
    font-size: 18px;
    margin-bottom: 25px;
}

#contact form {
    max-width: 500px;
    margin: 0 auto 30px auto;
    text-align: left;
}

#contact label {
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

#contact input,
#contact textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 16px;
    font-family: inherit;
}

#contact input:focus,
#contact textarea:focus {
    outline: 2px solid #fdfcf8;
    background-color: #f1f1f1;
    color: #0a1a3f;
}

#contact button {
    background-color: #fdfcf8;
    /* cream button */
    color: #0a1a3f;
    /* navy text */
    border: none;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}

#contact button:hover {
    background-color: #e0d9c7;
    /* darker cream */
}

#contact .contact-info {
    margin-top: 30px;
    font-size: 16px;
}

nav {
    background-color: #0d1b2a;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0.8rem 1.5rem;
}

nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;

}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;

}

nav a:hover {
    background-color: #ffffff;
    color: #0d1b2a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
aside {
    background-color: #f5f7f9;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

aside section {
    flex: 1 1 250px;
}

aside h3 {
    margin-bottom: 1rem;
    color: #0d1b2a;
    border-bottom: 2px solid #86a8e7;
    padding-bottom: 0.5rem;
}

aside ul {
    list-style: none;
    padding-left: 0;
}

aside li a,
aside ul a {
    color: #0d1b2a;
    text-decoration: none;
    display: block;
    margin: 0.5rem 0;
}

aside li a:hover {
    color: #ff7e5f;
}


footer {
    background-color: #0d1b2a;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
}