/* Container for main header + menu */
header.main-header {
  background-color: #003f7d; /* Deep blue */
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  box-shadow: 0 3px 8px rgba(0, 63, 125, 0.5);
  position: relative;
  z-index: 10;
}

/* H1 inside main header */
header.main-header h1 {
  font-size: 2.5rem;
  margin: 0 0 1.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
  line-height: 1.1;
  user-select: none;
}


nav.menu-container {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  margin: 0 auto;
  max-width: 90vw;
  width: 100%;
  box-sizing: border-box;
}

nav.menu-container ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, auto));
  justify-content: center; /* This centers the whole grid */
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

nav.menu-container li {
  width: 100%;
}

nav.menu-container li a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  color: #003f7d;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

nav.menu-container li a:hover,
nav.menu-container li a:focus {
  background-color: #f57c00;
  color: white;
  box-shadow: 0 4px 12px rgba(245,124,0,0.6);
  outline: none;
}



/* Base reset and typography */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #333333;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-weight: 600;
  color: #fff; /* White */
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #f57c00; /* Orange accent */
}

p {
  margin-bottom: 1.25rem;
}

/* Container */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Links */
a {
  color: #005bb5; /* Bright blue */
  text-decoration: none;
  transition: color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

a:hover,
a:focus {
  color: #f57c00; /* Orange on hover */
  outline: none;
  text-decoration: underline;
  box-shadow: 0 2px 8px rgba(245, 124, 0, 0.5);
}

/* Buttons */
button,
input[type="submit"] {
  background-color: #f57c00; /* Orange */
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(245, 124, 0, 0.4);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

button:hover,
input[type="submit"]:hover {
  background-color: #e66b00; /* Darker orange */
  box-shadow: 0 6px 18px rgba(230, 107, 0, 0.6);
}

/* Form fields */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1.5px solid #cccccc;
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: inherit;
  resize: vertical;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #005bb5; /* Bright blue */
  box-shadow: 0 0 8px rgba(0, 91, 181, 0.5);
  outline: none;
}

/* Shadows and cards */
.card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Utility spacing classes */
.mt-1 { margin-top: 1rem; }
.mb-1 { margin-bottom: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.pt-1 { padding-top: 1rem; }
.pb-1 { padding-bottom: 1rem; }

/* Header and footer */
header, footer {
  background-color: #003f7d; /* Deep blue */
  color: white;
  text-align: center;
  padding: 1.5rem 0;
  box-shadow: 0 3px 8px rgba(0, 63, 125, 0.5);
}

header h1, footer p {
  margin: 0;
}

/* Responsive typography */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  .container {
    padding: 0 1rem;
  }
  button,
  input[type="submit"] {
    width: 100%;
    padding: 1rem;
  }
}

/* === New Styles for Individual Page Headers === */
header.page-header {
  background-color: #f57c00; /* Orange */
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 0 0 8px 8px; /* Rounded bottom corners only */
  max-width: 800px;
  margin: 0 auto 3rem auto; /* No top margin */
  box-shadow: 0 6px 15px rgba(245, 124, 0, 0.4);
  text-align: center;
}


header.page-header h2 {
  font-size: 1.75rem;
  margin: 0 0 0.25rem 0;
  color: white;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

header.page-header p {
  margin: 0;
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 500;
  text-shadow: 0 1px 1px rgba(0,0,0,0.15);
}
/* Hero banner with background image and transparent overlay */
.hero-banner {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-position: center center;
  height: 350px;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  color: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 2rem;
}

.hero-banner .overlay-text {
  background-color: rgba(245, 124, 0, 0.75); /* semi-transparent orange */
  padding: 1.5rem 2rem;
  border-radius: 12px;
  max-width: 400px;
  box-shadow: 0 4px 15px rgba(245, 124, 0, 0.6);
}

.hero-banner h2 {
  margin-top: 0;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.hero-banner p {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

/* Vertical hover effect box */
.vertical-hover-box {
  background-color: #f57c00; /* orange */
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  max-width: 320px;
  box-shadow: 0 6px 15px rgba(245, 124, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  cursor: pointer;
}

.vertical-hover-box:hover,
.vertical-hover-box:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(245, 124, 0, 0.8);
}

.vertical-hover-box h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #005bb5;
  text-shadow: 0 1px 1px #000000;
}

.vertical-hover-box ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.vertical-hover-box ul li {
  margin-bottom: 0.5rem;
}

/* Main article with more spacious styling */
.main-article {
  padding: 2rem 2.5rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.07);
  margin-bottom: 2rem;
}

.main-article h2 {
  color: #003f7d; /* deep blue */
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2.25rem;
  font-weight: 700;
  border-bottom: 3px solid #f57c00;
  padding-bottom: 0.5rem;
}

/* Adjust button styles for overlay and elsewhere */
.hero-banner .btn,
.card .btn {
  background-color: #003f7d; /* deep blue for contrast */
  color: white;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(0, 63, 125, 0.4);
  transition: background-color 0.3s ease;
  display: inline-block;
}

.hero-banner .btn:hover,
.card .btn:hover {
  background-color: #f57c00;
  box-shadow: 0 8px 25px rgba(245, 124, 0, 0.7);
}

/* Layout tweaks for medium+ screens */
@media (min-width: 900px) {
  main.container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }

  /* Hero banner spans 2 columns */
  .hero-banner {
    grid-column: span 2;
    height: 400px;
  }

  /* Main article spans 2 columns */
  .main-article {
    grid-column: span 2;
  }

  /* Quick facts box fits nicely */
  .vertical-hover-box {
    max-width: none;
  }
}

.side-by-side-sections {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap; /* stack on narrow screens */
}

/* Make sure each section takes roughly half width on medium+ screens */
.side-by-side-sections > section {
  flex: 1 1 300px; /* grow, shrink, base width */
  min-width: 280px; /* don’t get too narrow */
  background-color: #fff;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.07);
}

/* Adjust headings and buttons if needed */
.side-by-side-sections > section h3 {
  color: #f57c00;
  margin-top: 0;
  margin-bottom: 1rem;
}
.email-link-quick-facts {
    color: #003f7d  ;
}

.card.quick-text {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
  max-width: 400px; /* Adjust as needed */
  max-height: 70px;
  margin: 0 auto 2rem auto; /* Centered with spacing below */
  padding: 1.5rem;
}

.card.quick-text {
    text-align: center;
    display: flex;
  flex-direction: column;
  justify-content: center;  /* vertical centering */
  align-items: center;      /* horizontal centering */
}

/* Page Header Banner */
.page-header {
  background-color: #f57c00;
  color: white;
  text-align: center;
  padding: 1.5rem;
  margin: 0 auto 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Hero Card Overlay */
.hero-card {
  position: relative;
  min-height: 250px;
  padding: 0;
  border: none;
  background-color: transparent;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  margin-bottom: 2rem;
}

.hero-card .overlay {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.hero-card .overlay h2 {
    color:#f57c00
}
/* Flex Row (side-by-side layout) */
.flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.flex-row .card {
  flex: 1 1 45%;
}

/* Cards */
.card {
  background-color: white;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.orange {
  color: #f57c00;
}



/* Remove duplicate .container or use a more specific class if needed */
/* .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem;
} */
.feature-article {
  border-left: 6px solid #f57c00;
  background-color: #fffef9;
  padding: 2rem;
  font-style: normal;
  line-height: 1.7;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.feature-article h2 {
  margin-top: 0;
}

/* Base Reset and Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f6f8;
  color: #333;
  line-height: 1.6;
  padding-bottom: 50px;
}

h1, h2, h3 {
  color: #2c3e50;
}

a {
  color: #0056b3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header and Navigation */
header {
  background-color: #295689;
  color: white;
  text-align: center;
  padding: 20px 15px;
}

header h1 {
  font-size: 2.5em;
  margin-bottom: 5px;
}

header p {
  font-size: 1.1em;
  margin-bottom: 10px;
}

/* Page Header (Hero Section) */
.page-header {
  text-align: center;
  color: white;
  padding: 60px 20px;
  background-size: cover;
  background-position: center;
  background-color: #2e3e5c; /* fallback */
}

.page-header h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px;
  border-radius: 10px;
}

/* Use a more specific class for this layout */
.container.layout-alt {
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Card and Article Styles */
.card, .feature-article {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s ease-in-out;
}

.card:hover, .feature-article:hover {
  transform: translateY(-5px);
}

.card h2, .feature-article h2 {
  margin-bottom: 15px;
}

.orange {
  color: #e67e22;
}

/* Flex Row Layout (used for side-by-side lists) */
.flex-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.flex-row > div {
  flex: 1 1 45%;
}

/* Centered Text and Vertical Centering in Cards */
.card.centered, .feature-article.centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #295689;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s ease-in-out;
}

.btn:hover {
  background-color: #1f466f;
}

/* Footer */
footer {
  background-color: #295689;
  color: white;
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
  font-size: 0.9em;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .flex-row {
    flex-direction: column;
  }

  .menu-container ul {
    flex-direction: column;
    align-items: center;
  }

  .menu-container li {
    margin: 8px 0;
  }

  .page-header h2 {
    font-size: 2em;
  }

  .container {
    padding: 0 10px;
  }
}
.page-header.about-us h2 {
   color:#e66b00;
}

.main-header {
    color: #ffffff;
}

.full-hero-banner {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  color: white;
  text-align: center;
  position: relative;
}

.full-hero-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #003f7d; 
  z-index: 1;
}

.banner-text {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.banner-text h2 {
  font-size: 2.6em;
  margin-bottom: 15px;
  color: #fff;
}

.banner-text p {
  font-size: 1.2em;
  color: #f0f0f0;
}
header:not(.page-header) h1 {
  color: white;
}
/* Container for each student life section */
.student-life-section {
  background-color: #fff; /* White background */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 2rem;
  margin-bottom: 2.5rem; /* clear vertical space between sections */
  transition: box-shadow 0.3s ease;
}

.student-life-section:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Section headings */
.student-life-section h2 {
  color: #f57c00; /* your orange accent */
  border-bottom: 3px solid #f57c00;
  padding-bottom: 0.4rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

/* Optional: inside padding or margin for paragraphs or lists */
.student-life-section p,
.student-life-section ul {
  margin-bottom: 1rem;
  line-height: 1.6;
}
/* Calendar Section Container */
.calendar-container {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Responsive iframe for Google Calendar */
.calendar-container iframe {
  width: 100%;
  height: 700px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 63, 125, 0.2);
}

/* Optional: Section Header */
.calendar-container h2 {
  color: #003f7d;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.calendar-container p {
  color: #444;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .calendar-container iframe {
    height: 500px;
  }

  .calendar-container h2 {
    font-size: 1.5rem;
  }
}
.academics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.card.wide-card {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .academics-grid {
    grid-template-columns: 1fr;
  }

  .card.wide-card {
    grid-column: span 1;
  }
}
/* === Info Band Styling === */
.info-band {
  padding: 2.5rem 2rem;
  margin: 3rem auto;
  border-radius: 12px;
  max-width: 1000px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  color: #fdfdfd; /* softer white */;
}

.orange-band {
  background-color: #f57c00;
}

.blue-band {
  background-color: #003f7d;
}

.light-band {
  background-color: #f0f0f0;
  color: #003f7d;
}

/* Heading Styling */
.info-band h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
}

/* Bullet List Styling */
.info-band ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.7;
}

.info-band ul li {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  text-align: center;
  color: #fefefe;
}

.info-band h2,
.info-band ul li {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* FAQ-specific */
.faq-list li {
  text-align: left;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
/* Flex container for side-by-side info bands */
.info-band-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 3rem auto;
  max-width: 1100px;
  padding: 0 1rem;
}

/* Make each section take half width on large screens */
.info-band-row .info-band {
  flex: 1 1 450px;
  margin: 0;
}

/* Maintain existing styles for .info-band sections */

.faq-section {
  background-color: #003f7d; /* deep blue */
  padding: 3rem 1rem;
  text-align: center;
  color: white;
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: white;
}

.faq-item {
  margin-bottom: 1.5rem;
  text-align: left;
}

.faq-question {
  background-color: #f57c00;
  color: white;
  font-weight: bold;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #e66b00;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  background-color: #ffffff;
  color: #003f7d;
  padding: 0 1rem;
  border-left: 4px solid #f57c00;
  border-radius: 0 0 6px 6px;
}

.faq-answer p {
  margin: 1rem 0;
}

.faq-item.open .faq-answer {
  max-height: 200px; /* adjust as needed */
  opacity: 1;
  padding: 1rem;
}
.faq-item.open .faq-question {
  background-color: #e66b00; /* darker orange when open */
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  background-color: #f57c00; /* Bright orange */
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: flex;
}

#backToTop:hover {
  background-color: #e66b00;
  transform: scale(1.05);
}



.application-form {
}
.school-entry {
}
.school-entry h2 {
  color: #f57c00; /* Orange accent */
  margin-bottom: 1rem;
}  
.school-entry p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.school-entry ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.school-entry ul li {
  margin-bottom: 0.5rem;
}
.school-entry .application-form {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.school-entry .application-form h3 {
  color: #003f7d; /* Deep blue */
  margin-bottom: 1rem;
}
.school-entry .application-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.school-entry .application-form input[type="text"],
.school-entry .application-form input[type="email"],
.school-entry .application-form input[type="tel"],
.school-entry .application-form select,
.school-entry .application-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
.school-entry .application-form input[type="submit"] {
  background-color: #f57c00; /* Orange */
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

  /* Container */
  .application-form {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    color: #222;
  }

  /* Headings */
  .application-form h2 {
    border-bottom: 2px solid #0073e6;
    padding-bottom: 0.3rem;
    margin-bottom: 1rem;
    color: #0073e6;
    font-weight: 700;
  }

  /* Labels */
  .application-form label {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    cursor: pointer;
  }

  /* Inputs, selects, textareas */
  .application-form input[type="text"],
  .application-form input[type="email"],
  .application-form input[type="tel"],
  .application-form input[type="date"],
  .application-form input[type="number"],
  .application-form input[type="month"],
  .application-form textarea {
    width: 100%;
    padding: 0.5rem 0.6rem;
    margin-top: 0.3rem;
    border: 1.8px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
  }
  .application-form input[type="text"]:focus,
  .application-form input[type="email"]:focus,
  .application-form input[type="tel"]:focus,
  .application-form input[type="date"]:focus,
  .application-form input[type="number"]:focus,
  .application-form input[type="month"]:focus,
  .application-form textarea:focus {
    border-color: #0073e6;
    outline: none;
  }

  /* Fieldsets */
  .application-form fieldset {
    border: 1.5px solid #0073e6;
    border-radius: 8px;
    padding: 1rem 1.2rem 1.2rem;
    margin-top: 1.5rem;
  }
  .application-form legend {
    padding: 0 0.5rem;
    font-weight: 700;
    color: #0073e6;
  }

  /* Radio and checkbox labels inline */
  .application-form fieldset label,
  .application-form label[for^="sex"],
  .application-form label[for^="applied-before"],
  .application-form label[for^="suspended"],
  .application-form label[for^="special-assistance"],
  .application-form label[for^="tested"],
  .application-form label[for^="disabilities"],
  .application-form label[for^="modified-program"] {
    display: inline-block;
    margin-right: 1.5rem;
    font-weight: 500;
  }
  .application-form input[type="radio"],
  .application-form input[type="checkbox"] {
    margin-right: 0.3rem;
    vertical-align: middle;
    cursor: pointer;
  }

  /* Buttons */
  .application-form button[type="submit"] {
    margin-top: 2rem;
    background-color: #0073e6;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.75rem 1.8rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .application-form button[type="submit"]:hover,
  .application-form button[type="submit"]:focus {
    background-color: #005bb5;
  }

  /* Ordered list styles */
  .application-form ol {
    margin-top: 1rem;
    padding-left: 1.2rem;
    color: #444;
    line-height: 1.5;
  }

  /* Unordered list styles */
  .application-form ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
  }
  .application-form ul li {
    margin-bottom: 0.5rem;
  }

  /* For school entries to separate */
  .school-entry {
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid #ddd;
  }

  /* Responsive */
  @media (max-width: 600px) {
    .application-form {
      padding: 1rem;
      margin: 1rem;
    }