body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0; /* Light grey background for a clean look */
    color: #333; /* Dark text for readability */
}

header {
    background: linear-gradient(90deg, #001a33, #003366); /* Gradient from dark navy blue to a slightly lighter blue */
    color: #f1c40f; /* Gold text color */
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0; /* Reset margin */
    text-align: center; /* Center text */
}

.logo img {
    max-width: 200px; /* Adjust the max-width to make the logo twice as large */
    height: auto;
    margin-right: 1rem; /* Space between logo and heading */
}

header h1 {
    font-size: 2rem;
    flex-grow: 1; /* Allow the heading to take up available space */
}

nav {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1rem;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #f1c40f; /* Gold text color */
    text-decoration: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold; /* Make text bold */
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Add transition for hover effect */
    border: 2px solid transparent; /* Add border for hover effect */
    border-radius: 4px; /* Rounded corners */
}

nav ul li a:hover {
    background-color: #f1c40f; /* Gold background on hover */
    color: #001a33; /* Dark navy text on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
    border: 2px solid #001a33; /* Dark navy border on hover */
}

main {
    padding: 2rem;
}

section {
    margin-bottom: 2rem;
}

.centered-text {
    text-align: center;
    margin: 2rem 0; /* Add some space above and below the text */
}

form {
    background-color: rgba(255, 255, 255, 0.8); /* Transparent white background */
    border: 1px solid #ccc; /* Light grey border */
    padding: 3rem; /* Increased padding */
    padding-right: 4rem;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    max-width: 500px; /* Set a max-width for the form */
    margin: 0 auto 2rem; /* Center the form and add space below */
    text-align: center; /* Center text */
    transition: transform 0.3s ease; /* Add transition for hover effect */
}

form:hover {
    transform: scale(1.02); /* Slightly enlarge on hover */
}

form label {
    font-weight: bold;
}

form input, form textarea {
    display: block; /* Make input elements block-level */
    width: 100%; /* Make input elements take up the full width */
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    margin-bottom: 1rem; /* Add some space below each input */
}

form textarea {
    height: 200px; /* Fixed size for the message textarea */
    resize: none; /* Prevent resizing */
}

form button {
    background-color: #f1c40f; /* Gold background */
    color: #001a33; /* Dark navy text */
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #e1b700; /* Darker gold on hover */
}

.contact-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 auto; /* Center the contact box */
    text-align: center; /* Center text */
}

.contact-info {
    background-color: rgba(255, 255, 255, 0.8); /* Transparent white background */
    border: 1px solid #ccc; /* Light grey border */
    padding: 0.5rem; /* Smaller padding */
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    max-width: 300px; /* Smaller width */
    margin: 0 auto; /* Center the contact info */
    text-align: center; /* Center text */
    transition: transform 0.3s ease; /* Add transition for hover effect */
}

.contact-info:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
}

footer {
    background: linear-gradient(90deg, #001a33, #003366); /* Gradient from dark navy blue to a slightly lighter blue */
    color: #f1c40f; /* Gold text color */
    text-align: center;
    padding: 1rem 0;
    position: relative;
    width: 100%;
    bottom: 0;
}

footer p {
    margin: 0;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    main {
        padding: 1rem;
    }
}
