/* Reset and Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Alata', sans-serif;
}
body {
  color: #222;
  line-height: 1.6;
  position: relative;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, #0052D4, #4364F7, #6FB1FC);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.hero-content button {
  padding: 12px 24px;
  background: white;
  color: #0052D4;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  font-family: 'Alata', sans-serif;
}
.hero-content button:hover {
  background: #dbe9ff;
}

/* Parallax Sections */
.parallax {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  overflow: hidden;
  color: white;
}
.parallax::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.parallax .content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: auto;
}
.about-section {
  background-image: url('images/about-bg.jpg');
}
.outcomes-section {
  background-image: url('images/outcomes-bg.jpg');
}
.faq-section {
  background-image: url('images/questions-bg.jpg');
}

/* Highlight Sections */
.highlight-section {
  background: #f7f9ff;
  padding: 60px 20px;
  text-align: center;
  color: #222;
}
.highlight-section h2 {
  color: #003399;
  font-size: 2rem;
  margin-bottom: 20px;
}
.highlight-section p,
.highlight-section ul {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 10px auto;
}

/* Custom Blue Checkmarks */
.highlight-section ul li::before {
  content: "\2713";
  color: #0052D4;
  margin-right: 10px;
  font-weight: bold;
}

/* Services Section */
.services-section {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
  color: #222;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
.service {
  flex: 1 1 30%;
  max-width: 30%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .services-grid {
    flex-direction: column;
  }
  .service {
    max-width: 100%;
    flex: 1 1 100%;
  }
}
.service img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}
.service h3 {
  font-size: 1.4rem;
  color: #0052D4;
  margin-bottom: 10px;
}
.service p {
  font-size: 1rem;
}

/* CTA Buttons */
.cta {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #0052D4;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  font-family: 'Alata', sans-serif;
}
.cta:hover {
  background-color: #003ca1;
}

/* FAQ Plain Text Style */
.faq-section .faq-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 10px;
  color: #0052D4;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}
.faq-section .faq-content h3 {
  margin-top: 20px;
  font-size: 1.4rem;
}
.faq-section .faq-content p {
  font-size: 1rem;
  margin-bottom: 15px;
}

/* Footer */
.footer {
  background: #002966;
  color: white;
  padding: 30px 20px;
  text-align: center;
}
.footer-content button {
  margin-top: 15px;
  background: #ffffff;
  color: #002966;
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  font-family: 'Alata', sans-serif;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 30px;
  max-width: 400px;
  border-radius: 10px;
  position: relative;
  animation: slideIn 0.5s ease;
}
@keyframes slideIn {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.modal-content input,
.modal-content button {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  font-size: 1rem;
}
.modal-content .close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}
.success-message {
  text-align: center;
  color: green;
  font-weight: bold;
  margin-top: 10px;
}
