/* Reset default margin and padding */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Style header and navigation */
header {
    background-color: #1E2A38; /* Dark blue background */
    color: #fff;
    padding: 20px; /* Increased padding for a bold header */
    text-align: center;
    font-size: 20px; /* Larger font size for a modern look */
    display: flex;
    justify-content: space-between; /* Align the content in the header */
    align-items: center; /* Center vertically */
}

header .logo {
    margin-left: 20px; /* Add space for the logo */
}

nav ul {
    list-style: none;
    display: flex;
    background-color: #1E2A38; /* Matching the header background color */
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px; /* Larger font size for navigation links */
}

/* Style sections */
section {
    margin: 20px;
    padding: 20px;
    border: 1px solid #1E2A38; /* Matching the header background color */
    background-color: #fff; /* White background for sections */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Adding a subtle box shadow */
    border-radius: 5px; /* Rounded corners for a modern look */
}

/* Style forms and buttons */
form {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc; /* Light border for form elements */
    border-radius: 5px; /* Rounded corners for form elements */
}

button {
    background-color: #1E2A38; /* Matching the header background color */
    color: #fff;
    padding: 12px 24px; /* Increased padding for buttons */
    border: none;
    cursor: pointer;
    border-radius: 5px; /* Rounded corners for buttons */
    transition: background-color 0.3s; /* Smooth hover effect */
}

button:hover {
    background-color: #0D1824; /* Darker background on hover for a sleek effect */
}





