body {
    font-family: 'dosis';
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f6f9;
    color: #444;
}
header {
    background-color: #000033;
    color: #000033;
    padding: 12px 0;
    text-align: center;            
}
header h1 {
    margin: 0;
    font-size: 2.5rem;
}
nav {
    background-color: #0000d4;
    /* Dark Gray */
    text-align: center;
    padding: 12px 0;
}
nav a {
    color: #f4f6f9;
    text-decoration: none;
    margin: 0 20px;
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}
nav a:hover {
    color: #000033;
    text-decoration: none;
}
section {
    padding: 25px;
    margin: 20px auto;
    max-width: 900px;
    color: #000033;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}
section:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
section h2 {
    color: #0000d4;
    /* Bright Blue */
    font-size: 1.8rem;
    margin-bottom: 15px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}
table th,
table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}
table th {
    background-color: #f1f1f1;
    font-weight: 600;
    color: #333;
}
table tr:nth-child(even) {
    background-color: #f9f9f9;
}
ul {
    list-style: none;
    padding: 0;
}
ul li {
    margin: 12px 0;
    font-size: 1.2rem;
}
ul li strong {
    color: #0000d4;
}
form {
    max-width: 650px;
    margin: 25px auto;
}
form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}
form input,
form textarea,
form button {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}
form input:focus,
form textarea:focus {
    border-color: #007bff;
    outline: none;
}
form button {
    background-color: #007bff;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
form button:hover {
    background-color: #0056b3;
}
form button:active {
    background-color: #004085;
}
footer {
    background-color: #0000d4;
    /* Dark Gray */
    text-align: center;
    padding: 12px 0;
}
footer a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 20px;
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}
footer a:hover {
    color: #000033;
    text-decoration: none;
}    

.submit-style {
  background-color: #0000d4;    /* Bootstrap blue */
  color: white;                 /* Text color */
  border: none;                 /* No border */
  margin: 0;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  padding: 12px 24px;  
  font-family: dosis;      /* Clean font */
  border-radius: 8px;           /* Rounded corners */
  cursor: pointer;              /* Pointer on hover */
  transition: background-color 0.3s ease;
}

.submit-style:hover {
  background-color: #0000d4;    /* Darker blue on hover */
  color: white;
}

.submit-style:active {
  background-color: #000033;    /* Even darker blue on click */
  color: white; 
  transform: scale(0.97);       /* Slight press effect */
}

.center-wrapper {
  display: flex;
  justify-content: left;
  align-items: left;
}

@font-face {
    font-family: "dosis";
    src: url(Dosis-Bold.ttf);
}
