body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: #FFFFFF !important;
    color: #fff;
  }

.navbar {
    background-color: #333; 
}
.navbar .nav-link {
    color: #fff !important;
    font-weight: 600;
    font-size: 1rem;
}
.logo{
  height: 7rem;
}


h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 5rem;
  }


.faq-container {
    max-width: 900px;
    margin: 0 auto;
  }

.faq-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  margin-top: 0;
  color: #2c3e50;
  font-size: 1.25rem;
}

.faq-item p {
  margin: 0.5rem 0 0;
  line-height: 1.6;
}

.highlight {
  color: #0077cc;
  font-weight: bold;
}

form {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

fieldset {
  border: none;
  margin-bottom: 2rem;
}

legend {
  font-weight: bold;
  margin-bottom: 1rem;
}

label {
  display: block;
  width: 100%;
  margin: 0.5rem 0 0.25rem;
}

input[type="text"] {
    width: 100%;
    max-width: 20rem;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 8px;
}
input[id="jogsi"] {
    max-width: 10rem;
}
textarea {
    width: 100%;
    max-width: 30rem;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.options-group {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
}

.option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px solid #eee;
}

.checkbox-group,
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.buttons {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.submit {
  background-color: #0077cc;
  color: #fff;
}

.reset {
  background-color: #ccc;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: #000;
  color: #FFF;
  z-index: 9999;
  border: 2px solid #FFD700;
}