/* ===== Font Imports ===== */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans&display=swap');

/* ===== Base Styles ===== */
body {
  font-family: 'Nunito Sans', sans-serif;
  margin: 40px;
  background-color: #f9f9f9;
  color: #333;
}

h1, h2, h3 {
  text-align: center;
  font-family: 'Chewy', cursive;
  color: #4a6fa5;
  margin: 0.5em 0;
}

p {
  margin: 0.5em 0;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin: 0.5em 0;
  font-size: 1rem;
}

/* ===== Header & Navigation ===== */
header {
  background: #fff9e6;
  padding: 1rem 2rem;
  text-align: center;
}

.logo {
  max-width: 250px;
  display: block;
  margin: 0 auto 10px auto;
}

.main-nav ul {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.main-nav ul li a {
  color: #276427;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.main-nav ul li a:hover,
.main-nav ul li a:focus {
  background-color: rgba(255, 255, 255, 0.2);
}

/* ===== Sections ===== */
section {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

/* ===== Features Columns ===== */
.features-columns {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  text-align: left;
}

.features-columns ul {
  flex: 1;
  min-width: 200px;
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
}

/* ===== Forms ===== */
.enroll-form,
.form-section {
  background: #fff;
  border: 1px solid #ccc;
  padding: 2rem;
  border-radius: 6px;
  max-width: 800px;
  margin: 30px auto;
}

label {
  font-weight: bold;
  display: block;
  margin: 15px 0 6px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group {
  margin-bottom: 15px;
}

button {
  display: block;
  margin: 30px auto 0;
  padding: 10px 30px;
  background: #4a6fa5;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  cursor: pointer;
  max-width: 200px;
  width: 100%;
}

button:hover {
  background: #3c5b85;
}

/* ===== Cost Display ===== */
#total-cost {
  font-weight: bold;
  margin-top: 12px;
  text-align: center;
  font-size: 1.2rem;
  color: #4a6fa5;
}

.choices__inner {
  min-height: 45px;
}

/* ===== Notes & Signature ===== */
.note {
  font-size: 0.9em;
  color: #666;
  margin-top: 10px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.signature-line {
  margin-top: 40px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Tables ===== */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

th, td {
  border: 1px solid #ccc;
  padding: 0.75rem;
  text-align: center;
  vertical-align: middle;
}

th {
  background: #f0f0f0;
  color: #4a6fa5;
}

/* ===== Footer ===== */
footer {
  background: #4a6fa5;
  color: #333;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  text-align: center;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-left p {
  margin: 0.3rem 0;
}

.footer-left a {
  color: black;
  text-decoration: none;
}

.footer-left a:hover {
  text-decoration: underline;
}

.footer-right {
  display: flex;
  gap: 1rem;
}

.social-icon {
  vertical-align: middle;
  margin-right: 10px;
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

/* Responsive container */
.about-section {
  padding: 1rem;
  max-width: 100%;
  margin: auto;
  text-align: center;
}

/* Responsive flex layout */
.about-features {
  display: flex;
  flex-direction: column; /* Stack on mobile */
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* Feature columns */
.about-features ul {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  line-height: 1.8;
  width: 100%;
  max-width: 400px;
}

/* Adjust paragraph */
.about-description {
  font-size: 1rem;
  margin-top: 1rem;
  padding: 0 1rem;
  text-align: center;
}

/* Optional: Responsive typography */
@media (min-width: 768px) {
  .about-features {
    flex-direction: row;
    justify-content: center;
  }

  .about-features ul {
    max-width: 300px;
  }
}
.table-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
  border-top: 2px dotted #4a6fa5;
  border-left: 2px dotted #4a6fa5;
  font-size: 1rem;
  color: #333;
}

.table-list li {
  display: flex;
  border-bottom: 1px dotted #4a6fa5;
  border-right: 1px dotted #4a6fa5;
  padding: 0.75rem 1rem;
  align-items: left;
  gap: 1rem;
}

.col-title {
  flex-basis: 30%;
  font-weight: 700;
  color: #4a6fa5;
}

.col-detail {
  flex-basis: 70%;
}

/* Responsive stacking on small screens */
@media (max-width: 600px) {
  .table-list li {
    flex-direction: column;
    align-items: flex-start;
  }
  .col-title,
  .col-detail {
    flex-basis: auto;
    width: 100%;
  }
  .col-title {
    margin-bottom: 0.25rem;
  }
}

.icon-img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
}

.icon-img.small {
  width: 16px;
  height: 16px;
}


