* {
    box-sizing: border-box;
}

header img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    box-shadow: #1E3A8A 0px 4px 8px; 
}

img {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

h1 {
    color: #134AFF;
    font-size: 3em;
    font-weight: 700;
    text-align: center;

}


h2 {
    color: #1E3A8A;
    font-size: 2em;
    text-align: start;
    border-bottom: 3px solid #FCD34D;
    padding-bottom: 10px;
}


body {
    font-family: 'Montserrat', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: #1A1A1A;
    font-size: 1em;
    line-height: 1.4;
    text-align: start;
    background-color: #F0F4FF;
    text-wrap-style: pretty;
}

section, form{
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.1);
}
section {
    margin: 40px 0;
}

h1,
h2 {
    margin-bottom: 30px;
}

nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    background-color: #1E3A8A;
    padding: 15px;
 
}


nav a {
    text-decoration: none;
    color: #FCD34D;
    font-size: 25px;
    transition: color 0.3s ease, background-color 0.3s ease;
}



nav a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

table {
    border-collapse: collapse;
    border: 2px solid rgb(140 140 140);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 20px auto;
}

thead,
tfoot {
    background-color: #1E3A8A;
    color: white;
}

th,
td {
    border: 1px solid rgb(160 160 160);
    padding: 12px 15px;
}

tbody>tr:nth-of-type(even) {
    background-color: #F0F0F0;
}

tfoot th {
    text-align: center;
    background-color: #FCD34D;
    color: #1A1A1A;
}

form {
    max-width: 1200px;
    margin: 30px auto;
    padding: 30px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

form legend {
    font-size: 1.3em;
    font-weight: 700;
    color: #1E3A8A;
    padding: 0 10px;
}

form fieldset {
    border: 2px solid #1E3A8A;
    border-radius: 8px;
    padding: 20px;
}

form div {
    margin-bottom: 15px;
}

form input[type="text"],
form input[type="email"],
form input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
}

form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    resize: vertical;
}

form label {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: 700;
    color: #1A1A1A;
}

form input[type="submit"] {
    background-color: #1E3A8A;
    color: #FFFFFF;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form input[type="submit"]:hover {
    background-color: #FCD34D;
    color: #1A1A1A;
}

form input[type="reset"] {
    background-color: #CCCCCC;
    color: #1A1A1A;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 10px;
}

form input[type="reset"]:hover {
    background-color: #999999;
}

hr {
    border: none;
    border-top: 2px solid #FCD34D;
    margin: 40px 0;
}

img:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}