html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: Montserrat;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
}

#bg-video {
    width: 100%;
}

.video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

#subCta {
position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  font-size: clamp(1rem, 2vw + 1rem, 3rem);
  line-height: 1.2;
  margin: 0;
  background-color: #0061ff99;
  color: #ffffff;
  padding: 5px 25px;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 6px 20px rgba(255,77,109,0.18);
  transition: transform .18s ease, box-shadow .18s ease;
}

@keyframes ring {
  0%   { box-shadow: 0 0 0 0 #0061ff99; }
  50%  { box-shadow: 0 0 0 5px #0061ff50;}
  100% { box-shadow: 0 0 0 10px #0061ff30; }
}

#subCta.ring {
  animation: ring 1.8s ease-in-out infinite;
}

.price-banner {
/*background: linear-gradient(15deg, rgb(0 255 10 / 0%) 0%, #ff0000 100%); */
  border-left: 6px solid #0061ff;
  border-right: 6px solid #00ff0a;
  padding: 20px;
  margin: 20px auto;
  max-width: 700px;
  text-align: center;
  font-size: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 0px 10px 0px #00000050;
}

.price-banner .price {
font-size: 1.5rem;
  line-height: 2;
  font-weight: bold;
  color: #0061ff;
}



.a-bottom-link {
  color: #ffffff;
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.2rem);
  text-decoration: none;
}

.a-bottom-link:hover {
  text-decoration: underline dashed #ffffff;
  /* transform: scale(1.2); */
}


.logo {
  width: 170px;
}

main {
  flex: 1;
}


.section1 {
  margin: 10px;
  padding: 10px;
  height: 100%;
  width: 300px;
}

.about-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}






.journeys {
  background: #f9fafb;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.journey {
  margin-bottom: 100px;
}

.journey img {
  width: 100%;
}

.journey h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
  color: #111827;
}

.timeline {
  position: relative;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline .line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 0;
  /* animated with jQuery */
  background: linear-gradient(180deg, #0061ff, #0061ff);
  transform: translateX(-50%);
  transition: height 0.5s ease-out;
}

.step {
  position: relative;
  width: 30%;
  padding: 10px;
  margin-bottom: 60px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.step.active {
  opacity: 1;
  transform: translateY(0);
}

.step:nth-child(odd) {
  left: 13%;
  text-align: right;
}

.step:nth-child(even) {
  left: 55%;
  text-align: left;
}

.step img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #111827;
}

.content p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .timeline .line {
    left: -5px;
  }

  .step {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
  }
}

.faq-section {
  padding: 60px 20px;
  background: #f9fafb;
}

.faq-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #1f2937;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 0;
  padding: 16px 18px;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 18px;
  font-size: 20px;
  line-height: 1;
  transition: transform 0.25s ease;
  color: #6b7280;
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #0062ff30;
  color: #0061ff;
  border: 1px solid #0062ff;
  flex: 0 0 36px;
}

.faq-answer {
  padding: 0 18px 18px 66px;
  color: #4b5563;
  line-height: 1.65;
  display: none;
}

@media (max-width: 640px) {
  .faq-answer {
    padding-left: 58px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .faq-answer {
    transition: opacity 0.25s ease;
  }
}





footer {
  background: #0061ff;
  color: white;
  text-align: center;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 10px;
}

footer h3,
footer h4 {
  margin: 5px 0;
}

.address,
.footer-links,
.get-in-touch {
  margin: 10px;
  width: 300px;
}

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

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(0.9rem, 1vw + 0.3rem, 1.1rem);
}

.footer-links a:hover {
  text-decoration: underline;
}






.copyrights {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background: #ffffff;
  color: #0061ff;
}

.copyrights a {
  color: #0061ff;
  font-size: 1rem;
  text-decoration: none;
}

.copyrights a:hover {
  text-decoration: underline dashed #0061ff;
}


@media (max-width: 768px) {

  .logo {
    width: 100px;
  }
}