﻿body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #F7FAFC;
  color: #1A202C;
}

/* Header */
header {
  background-color: #2B6CB0;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

header .logo {
  font-size: 24px;
  font-weight: bold;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}

nav a:hover,
nav a.active {
  text-decoration: underline;
}

/* Buttons */
.btn {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  text-decoration: none;
  margin: 5px;
}

.btn.primary {
  background-color: #FFB400;
  color: #fff;
}

.btn.secondary {
  background-color: transparent;
  border: 2px solid #FFB400;
  color: #FFB400;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(to bottom right, #2B6CB0, #1A4F85);
  color: #fff;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero .tagline {
  font-size: 20px;
  margin-bottom: 30px;
}

.cta-buttons {
  margin-top: 20px;
}

/* Features Section */
.features {
  padding: 60px 20px;
  background-color: #F7FAFC;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #1A202C;
  color: #fff;
  font-size: 14px;
}
.mission {
  padding: 50px 20px;
  background-color: #EDF2F7;
  text-align: center;
}

.mission h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #2B6CB0;
}

.mission p {
  font-size: 18px;
  line-height: 1.5;
  color: #2D3748;
  max-width: 700px;
  margin: 0 auto;
}

.mission a {
  color: #FFB400;
  text-decoration: none;
  font-weight: bold;
}

.mission a:hover {
  text-decoration: underline;
}
/* Responsive Navigation */
header {
  flex-wrap: wrap;
}
nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
nav a {
  padding: 5px;
}

/* Mobile-Friendly Hero */
.hero {
  padding: 80px 15px;
}
.hero h1 {
  font-size: 32px;
}
.hero .tagline {
  font-size: 16px;
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-buttons .btn {
  margin-bottom: 10px;
  width: 80%;
  max-width: 300px;
}

/* Mobile Features Grid */
.feature-grid {
  grid-template-columns: 1fr;
}

/* Mission Section on Mobile */
.mission h2 {
  font-size: 22px;
}
.mission p {
  font-size: 16px;
}

/* Media Queries for larger screens */
@media (min-width: 600px) {
  .hero h1 {
    font-size: 48px;
  }
  .hero .tagline {
    font-size: 20px;
  }
  .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
/* Hamburger menu button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Default nav */
nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* Mobile View */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    background-color: #2B6CB0;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    z-index: 100;
  }

  nav a {
    display: block;
    padding: 10px;
    font-size: 18px;
  }

  nav.nav-open {
    display: flex;
  }
}
.form-section {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  background-color: #FFFFFF;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.form-section label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #2B6CB0;
}

.form-section input[type="text"],
.form-section input[type="file"] {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #CBD5E0;
  border-radius: 4px;
  font-size: 14px;
}