html, body {
  margin: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  font-family: 'Lato', Arial, sans-serif;
}

/* Animation classes for scroll reveal */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.fade-in.animate {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.slide-in-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.slide-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.scale-in.animate {
  opacity: 1;
  transform: scale(1);
}

/* Stagger animation delays for cards */
.stagger-animation:nth-child(1) { transition-delay: 0.2s; }
.stagger-animation:nth-child(2) { transition-delay: 0.4s; }
.stagger-animation:nth-child(3) { transition-delay: 0.6s; }
.stagger-animation:nth-child(4) { transition-delay: 0.8s; }
.stagger-animation:nth-child(5) { transition-delay: 1.0s; }

.hero-section {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  max-width: 100vw;
  background: url('assets/landing-1.png') center center/cover no-repeat;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 90px;
}

.overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: url('assets/landing-2.png') center center/cover no-repeat;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  z-index: 1000;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 60px;
  transition: background 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.25s;
  box-sizing: border-box;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.navbar.scrolled {
  background: rgba(44, 62, 120, 0.97);
  box-shadow: 0 2px 12px rgba(44, 62, 120, 0.08);
}

.logo {
  height: 5vh;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.2s;
  font-family: 'Raleway', 'Lato', Arial, sans-serif;
}

nav ul li a.active,
nav ul li a:hover {
  color: #b6ff6c;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-top: 20vw;
  margin-left: 100px;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  font-family: 'Raleway', 'Lato', Arial, sans-serif;
}

.highlight-green {
  color: #b6ff6c;
}

.highlight-blue {
  color: #7faaff;
}

.subtitle {
  color: #e0e0e0;
  font-size: 1.1rem;
  margin-bottom: 32px;
  font-family: 'Lato', Arial, sans-serif;
}

.cta-btn {
  display: inline-block;
  background: #7faaff;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s;
  font-family: 'Raleway', 'Lato', Arial, sans-serif;
}

.cta-btn:hover {
  background: #5a8be7;
}

.hero-content{
  margin-top: 20vw;
}

.who-i-help-section {
  width: 100%;
  background: #f6f7fe;
  padding: 64px 0 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.who-i-help-title {
  font-family: 'Raleway', 'Lato', Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 48px;
  text-align: center;
}

.who-i-help-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  max-width: 1200px;
  width: 100%;
}

.help-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(80, 120, 200, 0.08);
  padding: 32px 28px 24px 28px;
  width: 245px;
  min-height: 175px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: 'Lato', Arial, sans-serif;
  transition: box-shadow 0.2s, transform 0.2s;
}

.help-card:hover {
  box-shadow: 0 6px 24px rgba(80, 120, 200, 0.16);
  transform: translateY(-4px) scale(1.02);
}

.help-card h3 {
  font-family: 'Raleway', 'Lato', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #222;
}

.help-card p {
  font-size: 1rem;
  color: #555;
  margin: 0 0 24px 0;
  line-height: 1.5;
}

.explore-link {
  font-family: 'Raleway', 'Lato', Arial, sans-serif;
  color: #6a6cff;
  font-weight: 500;
  text-decoration: underline;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.explore-link .arrow {
  display: inline-block;
  font-size: 1.1em;
  background: #ecebfc;
  color: #6a6cff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}

.explore-link:hover {
  color: #222;
}

.arrow-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin-left: 8px;
  vertical-align: middle;
  object-fit: contain;
  padding: 2px;
}

@media (max-width: 900px) {
  .arrow-icon {
    width: 18px;
    height: 18px;
    margin-left: 6px;
  }
}

@media (max-width: 1440px) {
  .hero-section {
    height: 50vw;
    min-height: 600px;
    max-height: 1024px;
    width: 100vw;
    max-width: 100vw;
  }
  .hero-content {
    margin-left: 5vw;
    margin-top: 20vw;
  }
}

@media (max-width: 900px) {
  .navbar {
    padding: 12px 24px;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(44, 62, 120, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  
  .nav-menu ul li a {
    font-size: 1.2rem;
    padding: 12px 0;
    display: block;
  }
  
  .hero-section {
    padding-top: 80px;
  }
  .hero-content {
    margin-left: 24px;
    margin-top: 20vw;
    max-width: 90vw;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 8px 8px 0 8px;
    width: 100vw;
    box-sizing: border-box;
  }
  /*.hero-section {*/
  /*  padding-top: 60px;*/
  /*  background: url('assets/phone-landing.png') center center/cover no-repeat !important;*/
  /*}*/
  /*.overlay{*/
  /*    background: none;*/
  /*}*/
  .logo {
    height: 32px;
  }
  nav ul {
    gap: 12px;
    font-size: 0.9rem;
  }
  .hero-content {
    margin-left: 8px;
    margin-top: 300px;
    max-width: 98vw;
  }
  .hero-content h1 {
    font-size: 1.3rem;
  }
  .cta-btn {
    padding: 12px 18px;
    font-size: 1rem;
  }
  .who-i-help-section {
    padding: 36px 0 40px 0;
  }
  .who-i-help-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
  .help-card {
    width: 75vw;
    padding: 18px 6vw 16px 6vw;
  }
}

@media (max-width: 1100px) {
  .who-i-help-cards {
    gap: 24px;
  }
  .help-card {
    width: 300px;
    padding: 28px 18px 20px 18px;
  }
}

@media (max-width: 900px) {
  .who-i-help-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .help-card {
    width: 90vw;
    max-width: 350px;
  }
}

@media (max-width: 600px) {
  .who-i-help-section {
    padding: 36px 0 40px 0;
  }
  .who-i-help-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
  .help-card {
    width: 75vw;
    padding: 18px 6vw 16px 6vw;
  }
}

.services-section {
  width: 100%;
  background: #f6f7fe;
  padding: 64px 0 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-title {
  font-family: 'Raleway', 'Lato', Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 48px;
  text-align: center;
}

.services-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 900px;
  width: 100%;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(80, 120, 200, 0.08);
  padding: 24px;
  width: 380px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: 'Lato', Arial, sans-serif;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 6px 24px rgba(80, 120, 200, 0.16);
  transform: translateY(-4px) scale(1.02);
}

.service-img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
}

.service-title {
  font-family: 'Raleway', 'Lato', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #6a6cff;
}

.service-desc {
  font-size: 1rem;
  color: #555;
  margin: 0 0 28px 0;
  line-height: 1.5;
}

.service-link {
  font-family: 'Raleway', 'Lato', Arial, sans-serif;
  color: #6a6cff;
  font-weight: 500;
  text-decoration: underline;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  margin-top: auto;
  margin-left: 2px;
}

.service-link .arrow {
  display: inline-block;
  font-size: 1.1em;
  background: #ecebfc;
  color: #6a6cff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}

.service-link:hover {
  color: #222;
}

@media (max-width: 900px) {
  .services-cards {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .service-card {
    width: 90vw;
    max-width: 400px;
  }
}

@media (max-width: 600px) {
  .services-section {
    padding: 36px 0 40px 0;
  }
  .services-title {
    font-size: 1.3rem;
    margin-bottom: 24px;
  }
  .service-card {
    width: 73vw;
    max-width: 98vw;
    min-height: 360px;
  }
  .service-img {
    height: 150px;
  }
  .service-link{
    margin: 8px 0;
  }
  .service-desc{
    margin: 0;
  }
}

.quote-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.quote-bar {
  width: 100%;
  background: #4746a4;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 110px;
  padding: 0;
  overflow: visible;
}

.quote-mark {
  font-family: serif;
  font-size: 21rem;
  color: #6a6ccf;
  opacity: 0.32;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  z-index: 0;
  font-weight: bolder;
}

.quote-mark-open {
  left: 125px;
  top: -75px;
}

.quote-mark-close {
  right: 125px;
  bottom: -195px;
}

.quote-text {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.6rem;
  font-style: italic;
  color: #fff;
  text-align: center;
  flex: 1 1 auto;
  z-index: 1;
  margin: 0 12px;
  position: relative;
}

@media (max-width: 1200px) {
  .quote-mark {
    font-size: 10rem;
  }
  .quote-mark-open {
    left: -30px;
    top: -30px;
  }
  .quote-mark-close {
    right: -30px;
    bottom: -30px;
  }
}

@media (max-width: 900px) {
  .quote-bar {
    min-height: 80px;
  }
  .quote-mark {
    font-size: 5.5rem;
  }
  .quote-mark-open {
    left: -10px;
    top: -10px;
  }
  .quote-mark-close {
    right: -10px;
    bottom: -10px;
  }
  .quote-text {
    font-size: 1.1rem;
    margin: 0 6px;
  }
}

.about-section {
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0 64px 0;
}

.about-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  width: 100%;
  gap: 48px;
  padding: 0 32px;
}

.about-img-wrapper {
  flex: 0 0 340px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.about-img {
  width: 340px;
  height: 340px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(80, 120, 200, 0.08);
}

.about-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 600px;
}

.about-title {
  font-family: 'Raleway', 'Lato', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #222;
}

.about-content p {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.08rem;
  color: #6a6a6a;
  margin-bottom: 18px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 0 8vw;
  }
  .about-img-wrapper {
    flex: none;
  }
  .about-img {
    width: 260px;
    height: 260px;
  }
  .about-content {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 32px 0 32px 0;
  }
  .about-container {
    gap: 16px;
    padding: 0 2vw;
  }
  .about-img {
    width: 65vw;
    height: auto;
  }
  .about-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .about-content p {
    font-size: 0.98rem;
    margin: 16px 16px 0;
  }
}

.certifications-section {
  width: 100%;
  background: #fff;
  padding: 56px 0 56px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.certifications-title {
  font-family: 'Raleway', 'Lato', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #7a7fdc;
  margin-bottom: 36px;
  text-align: center;
}

.certifications-carousel {
  display: flex;
  flex-direction: row;
  gap: 32px;
  overflow-x: auto;
  padding: 0 24px 8px 24px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  animation: auto-scroll 60s linear infinite;
  animation-play-state: running;
}

.certifications-carousel:hover {
  animation-play-state: paused;
}

@keyframes auto-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.certifications-carousel::-webkit-scrollbar {
  display: none;
}
.certifications-carousel {
  scrollbar-width: none;
}

.cert-card {
  flex: 0 0 260px;
  height: 210px;
  background: #efefef;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(80, 120, 200, 0.06);
  overflow: hidden;
}

.cert-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .cert-card {
    flex: 0 0 180px;
    height: 130px;
  }
  .certifications-title {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }
  .certifications-section {
    padding: 32px 0 32px 0;
  }
}

.contact-section {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: url('assets/contact.png') center center/cover no-repeat;
  z-index: 1;
  filter: brightness(0.7);
}

.contact-form {
  position: relative;
  z-index: 2;
  background: rgba(30, 30, 40, 0.82);
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  padding: 40px 38px 32px 38px;
  max-width: 480px;
  width: 100%;
  margin: 48px 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.contact-title {
  font-family: 'Raleway', 'Lato', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  margin-top: 0;
}

.contact-title .highlight-green {
  color: #b6ff6c;
}

.contact-subtitle {
  font-family: 'Lato', Arial, sans-serif;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 28px;
  font-weight: 400;
}

.contact-input-wrapper {
  display: flex;
  align-items: center;
  background: #f7f7fb;
  border-radius: 8px;
  margin-bottom: 18px;
  box-shadow: 0 1px 4px rgba(80, 120, 200, 0.04);
  padding-left: 12px;
}

.contact-input-icon {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  opacity: 0.7;
}

.contact-input-wrapper:focus-within {
  box-shadow: 0 2px 8px rgba(80, 120, 200, 0.10);
  border: 1.5px solid #b6ff6c;
}

.contact-input-wrapper textarea.contact-input {
  padding-left: 0;
}

.contact-input {
  border: none;
  outline: none;
  background: transparent;
  box-shadow: none;
  margin-bottom: 0;
  padding: 14px 16px 14px 0;
  flex: 1 1 0;
  font-size: 1.08rem;
  color: #222;
}
.contact-input::placeholder {
  color: #CDCDE2;
}

.contact-message {
  min-height: 80px;
  resize: vertical;
}

.contact-btn {
  font-family: 'Raleway', 'Lato', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  background: #b6b6ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px 0;
  margin-top: 8px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(80, 120, 200, 0.08);
  transition: background 0.2s;
}

.contact-btn:hover {
  background: #7a7fdc;
}

@media (max-width: 700px) {
  .contact-form {
    max-width: 98vw;
    padding: 24px 4vw 18px 4vw;
  }
  .contact-title {
    font-size: 1.3rem;
  }
  .contact-input-wrapper {
    padding-left: 6px;
  }
  .contact-input-icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
  }
}

@media (max-width: 600px) {
  .contact-form {
    max-width: 80vw;
  }
  .contact-input,
  textarea.contact-input {
    font-size: 0.92rem;
    padding: 8px 6px 8px 0;
  }
  .contact-title {
    font-size: 1.3rem;
  }
  .contact-input-wrapper {
    padding-left: 6px;
  }
  .contact-input-icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
  }
}

.footer-section {
  width: 100%;
  background: #4746a4;
  color: #fff;
  padding: 48px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-container {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 60px 32px 60px;
  gap: 32px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.08rem;
  color: #d6e6ff;
}

.footer-contact-item span {
  text-decoration: none !important;
  color: inherit !important;
  cursor: default;
}

.footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.footer-logo img {
  height: 5vh;
}

.footer-logo span {
  font-family: 'Raleway', 'Lato', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  flex: 1 1 0;
}

.footer-links {
  display: flex;
  flex-direction: row;
  gap: 64px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-family: 'Raleway', 'Lato', Arial, sans-serif;
  font-size: 1.08rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #b6ff6c;
}

@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px 24px 24px;
    gap: 24px;
  }
  .footer-right {
    align-items: flex-start;
    width: 100%;
    margin-top: 24px;
  }
  .footer-links {
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .footer-section {
    padding: 16px;
  }
  .footer-container {
    padding: 0 6px 12px 6px;
    gap: 12px;
  }
  .footer-logo img {
    height: 28px;
  }
  .footer-logo span {
    font-size: 1.1rem;
  }
  .footer-links a {
    font-size: 0.98rem;
  }
}

/* Who I Help Modal Styles */
#modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44,62,120,0.65);
  z-index: 2000;
}
.who-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2001;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(44,62,120,0.18);
  max-width: 90vw;
  width: 370px;
  padding: 0;
  animation: whoModalFadeIn 0.25s;
}
@keyframes whoModalFadeIn {
  from { opacity: 0; transform: translate(-50%, -60%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}
.who-modal-content {
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.who-modal-content h2 {
  font-family: 'Raleway', 'Lato', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #4746a4;
  margin-bottom: 12px;
}
.who-modal-content p {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 0;
  line-height: 1.6;
}
.who-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 1.6rem;
  color: #4746a4;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.2s;
}
.who-modal-close:hover {
  color: #b6ff6c;
}
@media (max-width: 600px) {
  .who-modal {
    width: 96vw;
    max-width: 98vw;
  }
  .who-modal-content {
    padding: 18px 8px 14px 8px;
  }
  .who-modal-content h2 {
    font-size: 1.1rem;
  }
  .who-modal-content p {
    font-size: 0.98rem;
  }
}

/* Modern Minimal FAQ Section Styles */
.faq-section {
  width: 100%;
  background: #fff;
  padding: 64px 0 48px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq-title {
  font-family: 'Raleway', 'Lato', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #4746a4;
  margin-bottom: 36px;
  text-align: center;
}
.faq-list {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(80, 120, 200, 0.08);
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.2s;
}
.faq-item.open {
  box-shadow: 0 6px 24px rgba(80, 120, 200, 0.14);
}
/* FAQ Section Styles - Soft Blue Background */
.faq-question {
  width: 100%;
  background: #eef2f7;
  color: #222;
  font-family: 'Raleway', 'Lato', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 600;
  padding: 20px 48px 20px 24px;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: background 0.2s, color 0.2s;
  border-radius: 14px 14px 0 0;
}
.faq-question:focus, .faq-question:hover {
  background: #dde3ec;
  color: #4746a4;
}
.faq-question[aria-expanded="true"] {
  background: #dde3ec;
  color: #4746a4;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #7faaff;
  transition: transform 0.3s, color 0.2s;
}
.faq-item.open .faq-question::after {
  content: '-';
  color: #4746a4;
  transform: translateY(-50%) rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 24px;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  background: #fff;
  transition: max-height 0.45s cubic-bezier(.4,0,.2,1), opacity 0.35s, padding 0.35s;
}
.faq-item.open .faq-answer {
  opacity: 1;
  padding: 10px 24px 20px 24px;
  max-height: 300px;
  transition: max-height 0.45s cubic-bezier(.4,0,.2,1), opacity 0.35s, padding 0.35s;
}
@media (max-width: 700px) {
  .faq-section {
    padding: 36px 0 24px 0;
  }
  .faq-title {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }
  .faq-list {
    max-width: 90vw;
  }
  .faq-question {
    font-size: 1rem;
    padding: 14px 38px 14px 10px;
  }
  .faq-answer {
    font-size: 0.98rem;
    padding: 0 10px;
  }
  .faq-item.open .faq-answer {
    padding: 8px 10px 14px 10px;
    max-height: 400px;
  }
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  font-family: 'Raleway', 'Lato', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  padding: 16px 0;
  margin-top: 12px;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
  transition: background 0.2s, transform 0.2s;
}

.whatsapp-btn:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

@media (max-width: 700px) {
  .whatsapp-btn {
    font-size: 1rem;
    padding: 14px 0;
  }
}
