body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    align-items: center;  /* Vertically center content */
    justify-content: center;  /* Center content horizontally */
    padding: 10px;
    padding-left: 100px;
    background-color: #195163;
    color: white;
    position: relative; /* Allows positioning of the logo */
}
.header-title {
    margin: 0;
    font-size: 1.8rem;
    text-align: center;
}

.header-image {
    width: 150px; /* Adjust width */
    height: 40px; /* Adjust height */
    /* margin-right: 20px; Add space between image and text */
    position: absolute; /* Position absolute keeps it fixed in place */
    left: 20px; 
    border-radius: 50%; /* Example: make the image round */
}

h1 {
    margin: 0;
    font-size: 1.8rem;
}
footer {
    text-align: center;
    padding: 6px;
    background-color: #195163;
    color: white;
    margin-top: 10px;
}
.table-container {
    display: flex;
    justify-content: center; /* Horizontally center the table */
    margin-top: 20px;
}

table {
    border-collapse: collapse;
    width: 80%; /* Adjust table width as needed */
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #333;
    color: white;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}





input, textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}



.submit-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.submit-button:hover {
    background-color: #0056b3;
}

.navigation-links {
    text-align: center;
    margin-top: 10px;
}

.navigation-links a {
    color: #007bff;
    text-decoration: none;
    font-size: 16px;
}

.navigation-links a:hover {
    text-decoration: underline;
}


.introduction-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.explanation-container {
    max-width: 70%;
    /* max-width: 900px; */
    margin: 0 auto;
    /* padding: 20px; */
    background-color: #f9f9f9;
    border-radius: 8px;
}

p {
    text-align: justify;
    padding: 0 10px;
}
form {
    display: flex;
    flex-direction: column;
}

.ge_title {
    font-size: 24px;
}

.form-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

label {
    font-weight: bold;
    width: 30%;
}

input, select {
    width: 65%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#other-expertise-container {
    display: none;
    /* justify-content: space-between; */
}

textarea {
    resize: none;
}

.button-group {
    display: flex;
    justify-content: center;  /* Center buttons horizontally */
    gap: 10px;  /* Space between buttons */
}

.nav-button {
    background-color: #a7a865;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: auto;
}

.nav-button:hover {
    background-color: #195163;
}

.targetA {
    text-decoration:none;
    color: black;
    /* font-style: italic; */
}

a.targetA:hover {
    /* color: #a7a865; */
    color: #2db9f5;
}

@media (max-width: 700px) {
  img.header-image {
    display: none;
  }
  header {
    padding: 10px;
  }
  .ge_title {
        font-size: 14px;
    }
}

@media (min-width: 700px) and (max-width: 960px) {
    .ge_title {
        font-size: 10px;
    }
}
@media (min-width: 960px) and (max-width: 1050px) {
    .ge_title {
        font-size: 16px;
    }
}
@media (min-width: 1050px) and (max-width: 1200px) {
    .ge_title {
        font-size: 18px;
    }
}
@media (min-width: 1200px) and (max-width: 1300px) {
    .ge_title {
        font-size: 20px;
    }
}
@media (min-width: 1300px) {
    .ge_title {
        font-size: 24px;
    }
}