body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
}

header {
    background: #002147;
    color: white;
    padding: 20px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

section {
    padding: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

table th {
    background: #002147;
    color: white;
}

.logo {
    height: 80px;
    vertical-align: middle;
    margin-right: 15px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.logo {
    height: 80px;
    vertical-align: middle;
    margin-right: 15px;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

section h2 {
    color: #002147;
    margin-bottom: 10px;
}

section p {
    line-height: 1.6;
    margin-bottom: 15px;
}

form {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    max-width: 500px;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
}

form button {
    background: #002147;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

form button:hover {
    background: #004080;
}

form input {
    margin: 5px;
    padding: 8px;
}

form button {
    background: #002147;
    color: white;
    padding: 8px 15px;
    border: none;
    cursor: pointer;
}

form button:hover {
    background: #004080;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 10px;
}
