@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global */
body {
  font-family: 'Montserrat', sans-serif;
  background: #F6F6F6;
  color: #333;
  line-height: 1.6;
}

/* ===== Header ===== */
.main-header {
  background: #F6F6F6;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #002D5B; /* Dark blue line, 1 px thicker than before */
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 1rem;
  color: #002D5B;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  font-size: 1.8rem;
  font-weight: 600;
  color: #002D5B; 
  text-decoration: none;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: #002D5B;
  text-decoration: none;
  padding: 6px 10px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #0065CD;
}

.login-btn {
  background: #002D5B; /* Dark blue background */
  color: #fff;         /* White text */
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}

.login-btn:hover {
  opacity: 0.9;
}

/* ===== Hero Section ===== */
.landing-hero {
  background: #F6F6F6; /* Light grey background for text */
  margin-top: 72px;    /* So content doesn't hide behind fixed header */
  padding: 40px 10px 10px 10px;
  text-align: center;
}

.landing-hero h1 {
  font-size: 2rem;
  color: #002D5B; /* Dark blue */
  margin-bottom: 15px;
}

.landing-hero p {
  font-size: 1.1rem;
  color: #6D6D6D; /* Gray text */
  max-width: 700px;
  margin: 0 auto;
}

/* ===== Application Options ===== */
.application-options {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.application-option {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  position: relative;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.application-option:hover {
  transform: translateY(-4px);
}

.option-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.option-icon img {
  width: 100%;
  height: auto;
}

.application-option h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #002D5B;
}

.option-short-desc {
  font-size: 0.95rem;
  color: #6D6D6D;
  margin-bottom: 15px;
}

.toggle-btn {
  background: #0065CD; 
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.toggle-btn:hover {
  background: #0051A3;
}

.option-description {
  display: none;
  margin-top: 15px;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.option-description.visible {
  display: block;
}

.option-description p,
.option-description ul {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

.option-description ul {
  list-style-type: disc;
  margin-left: 20px;
}

.option-actions {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 10px 15px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  transition: opacity 0.3s;
}

/* Button colors: Start Application (#002D5B), Check Eligibility (#0065CD) */
.start-app {
  background: #002D5B; 
  color: #fff;
}

.start-app:hover {
  opacity: 0.9;
}

.check-eligibility {
  background: #0065CD;
  color: #fff;
}

.check-eligibility:hover {
  opacity: 0.9;
}

/* ===== Footer ===== */
.main-footer {
  background: #002D5B; /* Dark blue */
  margin-top: 40px;
  padding: 40px 20px;
  color: #fff;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-column h3 {
  color: #BFDFFF; /* Light blue text for section titles */
  font-size: 1.0rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  font-size: 0.80rem; 
  color: #fff;       /* White text for links */
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-column ul li a:hover {
  opacity: 0.8;
}

/* Disclaimer above copyright */
.footer-disclaimer {
  max-width: 1200px;
  margin: 30px auto 0;
  font-size: 0.75rem;
  color: #fff;
  line-height: 1.4;
}

.footer-disclaimer p {
  margin-bottom: 0;
}

.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0;
  font-size: 0.8rem;
  text-align: center;
  color: #fff;
}

/* ===== How It Works Steps Section ===== */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 20px;
}

.step-box {
  background: #fff; /* White background */
  padding: 30px; /* Increased padding for a slightly longer box */
  width: 50%;   /* Each box is half the container width */
  margin: 0 auto;  /* Centers the box horizontally */
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.step-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: #002D5B;
  margin-bottom: 10px;
}

.step-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}

/* ===== Pricing Section ===== */
.pricing-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  background: #F6F6F6;
}

.pricing-card {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing-title {
  font-size: 1.8rem;
  color: #002D5B;
  margin-bottom: 10px;
}

.pricing-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  font-size: 0.95rem;
  color: #555;
  text-align: left;
}

.pricing-features li {
  margin: 10px 0;
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0065CD;
}

.btn.start-app {
  display: inline-block;
  padding: 12px 25px;
  background: #002D5B;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: opacity 0.3s;
}

.btn.start-app:hover {
  opacity: 0.9;
}

/* ===== FAQ Section ===== */
.faq-section {
  padding: 60px 20px;
  background: #F6F6F6;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #fff;
  padding: 20px 30px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-question {
  font-weight: 600;
  font-size: 1.1rem;
  color: #002D5B;
  margin-bottom: 10px;
}

.faq-answer {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

/* ===== About Section Boxes ===== */
.about-section {
  background: #F6F6F6;
  padding: 60px 20px;
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* individual white boxes */
.about-box {
  background: #fff;
  width: 70%;
  padding: 30px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* titles in dark blue */
.about-box .about-title {
  font-size: 1.5rem;
  color: #002D5B;
  margin-bottom: 15px;
  text-align: center;
}

/* body text inside boxes */
.about-box .about-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  text-align: center;
}

/* reuse existing .values-list and .value-item for the values box */
.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Override values-list: 2 columns on wider screens, 1 column on small */
.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* On mobile (<= 768px), stack them in a single column */
@media (max-width: 768px) {
  .values-list {
    grid-template-columns: 1fr;
  }
}

/* ===== Value Items with Icons ===== */
.value-item {
  background: #F6F6F6;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.value-icon {
  font-size: 2rem;
  color: #002D5B;
  margin-bottom: 10px;
}

/* ensure two columns on desktop, one on mobile */
.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

.value-item strong {
  display: block;
  font-weight: 600;
  color: #002D5B;
  margin-bottom: 8px;
}


/* ===== Contact Form ===== */
.contact-section {
  background: #F6F6F6;
  padding: 60px 20px;
}

.contact-container {
  background: #fff;
  width: 70%;
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #002D5B;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  resize: vertical;
}

.contact-form textarea {
  min-height: 150px;
}

.contact-btn {
  background: #002D5B;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.contact-btn:hover {
  opacity: 0.9;
}

/* Responsive: on smaller screens, make form full‑width */
@media (max-width: 768px) {
  .contact-container {
    width: 100%;
    padding: 20px;
  }
}


/* ===== Security Page ===== */
.security-section {
  padding: 60px 20px;
  background: #F6F6F6;
}

.security-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.security-box h2 {
  color: #002D5B;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.security-box p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}


/* ===== Privacy Policy Styles ===== */
.privacy-section {
  background: #F6F6F6;
  padding: 60px 20px;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.privacy-box h2 {
  color: #002D5B;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.privacy-box p,
.privacy-box ul {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.privacy-box ul {
  padding-left: 20px;
  list-style-type: disc;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #002D5B;
  color: white;
  padding: 20px;
  z-index: 9999;
  font-size: 0.95rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.cookie-content a {
  color: #BFDFFF;
  text-decoration: underline;
}

.cookie-buttons .btn {
  margin-left: 10px;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
}

.cookie-buttons .accept {
  background: #BFDFFF;
  color: #002D5B;
  border: none;
}

.cookie-buttons .reject {
  background: transparent;
  color: #BFDFFF;
  border: 1px solid #BFDFFF;
}

#cookie-preferences {
  font-size: 0.85rem;
  color: #BFDFFF;
  cursor: pointer;
  text-decoration: underline;
}
#cookie-preferences:hover {
  opacity: 0.8;
}

/* === Eligibility Page Styles === */

.eligibility-container {
  max-width: 1100px;
  width: 100%;
  margin: 80px auto 2rem;
  padding: 0 1rem;
  text-align: center;
}

.eligibility-container h1 {
  font-size: 2.2rem;
  color: #002D5B;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: 1rem;
  color: #6D6D6D;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.option {
  background: #fff;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.option:hover {
  transform: translateY(-4px);
  border-color: #002D5B;
  background-color: #F6F6F6;
}

.option-icon {
  font-size: 2.5rem;
  color: #002D5B;
  margin: 0 auto 1rem;
  display: block;
  text-align: center;
  width: 100%;
}

.option-title {
  color: #002D5B;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 3rem;  
  margin-bottom: 0.5rem;
}

.option-desc {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .option {
    padding: 20px 15px;
  }

  .option-icon {
    font-size: 2rem;
  }

  .option-title {
    font-size: 1rem;
  }

  .option-desc {
    font-size: 0.9rem;
  }
}

.page-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

.option-icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
  color: #002D5B;
}

.option-title {
  color: #002D5B;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.option-desc {
  font-size: 0.95rem;
  color: #666;
}

.option-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 1rem;
}

.btn {
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s;
}

.start-app {
  background-color: #002D5B;
  color: #fff;
}

.check-eligibility {
  background-color: #0065CD;
  color: #fff;
}

.option.active {
  border: 2px solid #002D5B;
  background-color: #F6F6F6;
}

.category-details-container {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 1rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: none;
}

.category-details-container.visible {
  display: block;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 2rem;
  align-items: stretch;
}

.option {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

