@charset "UTF-8";
/* CSS Document */
/* Contact Section */
.contact-section {
  max-width: 100%;
  width: 100%;
  margin: 2rem auto;
  padding: 0;
  background-color: transparent; /* No box */
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: #003366;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: 600;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #66aaff;
  box-shadow: 0 0 5px #99cfff;
}


.contact-form button {
  padding: 0.75rem;
  background-color: #005f99;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #004477;
}


/* Collapsible Info Box Styles */
.collapsible-box {
  margin: 20px auto;
  max-width: 800px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  overflow: hidden;
}

.toggle {
  display: none;
}

.toggle-label {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  font-weight: bold;
  cursor: pointer;
  background-color: #0073e6;
  color: #fff;
  font-size: 16px;
}

.info-icon {
  font-size: 20px;
  margin-right: 8px;
}

.info-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease;
  padding: 0 16px;
}

.toggle:checked + .toggle-label + .info-content {
  max-height: 500px;
  padding: 16px;
}

.info-row {
  padding: 6px 0;
  border-bottom: 1px solid #ddd;
}

