@import url("https://fonts.googleapis.com/css2?family=Cadeat:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Animation Keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { 
    opacity: 0;
    transform: translateY(30px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation Classes */
.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }

/* Intersection Observer Animation Trigger */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0) !important;
}

:root {
  /* Color Variables */
  --color-primary: #1f2734;
  --color-secondary: #2e93fa;
  --color-text: #ffffff;
  --color-text-secondary: #e0e0ef;
  --color-card-bg: #3b3f5a;
  --color-accent-orange: #ffaa6d;
  --color-dot-blue: #4bd5f5;
  --color-dot-orange: #ff6940;
  --color-dot-cyan: #3ef7e8;
  --color-dot-white: #ffffff;
  --gradient-orange: linear-gradient(180deg, #ee8d47 5.26%, #ffaa6d 100%);
  --gradient-glow: linear-gradient(
    to right,
    rgba(58, 115, 255, 0.5),
    rgba(30, 30, 48, 0)
  );

  /* Font Variables */
  --font-primary: "Poppins", sans-serif;
  --font-cursive: "Caveat", cursive;

  /* Spacing */
  --spacing-xs: 1px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 40px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-primary);
}

body {
  overflow-x: hidden;
  background: var(--color-primary);
  color: var(--color-text);
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.2s forwards;
}
/* hero */
.landing-banner {
  background: url("/assets/Background pattern decorative.svg") no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.layout-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 20px;
}
.banner-content h1 span {
  background: var(--gradient-orange);
  padding: var(--spacing-xs);
  border-radius: var(--radius-sm);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-columns: 50% 40%;
  gap: 3rem;
  align-items: center;
}

.hero-head h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.sub-text p:first-of-type {
  /* margin-bottom: 1rem; */
  color: #bbbec2;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  display: inline-flex;
  align-items: center;
}
.sub-text p {
  color: #bbbec2;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  margin-bottom: 16px;
}
.sub-text p img {
  width: 150px;
}
.banner-images {
  margin-top: 2rem;
  text-align: center;
  position: relative;
  width: 100%;
  height: auto;
}

.banner-images img {
  width: 100%;
  height: auto; /* default for desktop */
  object-fit: contain;
}
/* Responsive: stack on smaller screens */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr; /* Stack */
    text-align: center;
    gap: 1.5rem;
  }

  .hero-head h1 {
    font-size: 2.5rem;
  }

  .sub-text {
    margin-top: 0;
  }

  .sub-text p {
    justify-content: center;
  }

  .sub-text p img {
    width: 120px;
  }
}

@media (max-width: 600px) {
  /* .layout-container {
    padding: 60px 15px;
  } */

  .hero-head h1 {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .sub-text p:first-of-type {
    font-size: 18px;
  }

  .sub-text p {
    font-size: 16px;
    line-height: 140%;
  }

  .sub-text p img {
    display: none; /* Hide logo on very small screens */
  }
  .banner-images {
    display: none;
  }
}

.glow-strip {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  background: var(--gradient-glow);
  z-index: 0;
}
.glow-strip:first-of-type,
.glow-strip:last-of-type {
  background-color: var(--color-secondary);
  filter: blur(138px);
}
.glow-strip:first-of-type {
  left: 0;
}
.glow-strip:last-of-type {
  right: 0;
}

/* Spark (stars) */
.spark {
  position: absolute;
  background-image: url("./assets/star.png");
  background-size: contain;
  background-repeat: no-repeat;
  transition: opacity 0.3s ease;
}

.spark-1 {
  top: 10%;
  left: 20%;
  width: 25px;
  height: 100%;
}
.spark-2 {
  top: 10%;
  left: 80%;
  width: 25px;
  height: 100%;
}
.spark-3 {
  top: 50%;
  right: 10%;
  width: 15px;
  height: 15px;
}
.spark-4 {
  bottom: 25%;
  left: 5%;
  width: 18px;
  height: 18px;
}
.spark-5 {
  bottom: 10%;
  right: 20%;
  width: 22px;
  height: 22px;
}

/* Pointer (arrows) */
.pointer {
  position: absolute;
  background-image: url("./assets/arrow\ up.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  transition: all 0.3s ease;
}

.pointer-1 {
  top: 15%;
  right: 0;
  width: 300px;
  height: 200px;
}
.pointer-2 {
  top: 40%;
  left: 20%;
  width: 35px;
  height: 35px;
}
.pointer-3 {
  bottom: 30%;
  right: 25%;
  width: 40px;
  height: 40px;
}
.pointer-4 {
  bottom: 15%;
  left: 35%;
  width: 45px;
  height: 45px;
}
.pointer-5 {
  top: 5%;
  left: 50%;
  width: 38px;
  height: 38px;
}
.bg-rest {
  position: relative;
  z-index: 1;
}

.bg-rest::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/grid bg.svg");
  background-repeat: repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  opacity: 0.5; /* adjust opacity here */
  z-index: -1;
}
.second-wrap {
  padding: 80px 20px;
  color: #fff;
}

/* Layout container */
.second-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 50px;
  flex-wrap: nowrap;
  align-items: stretch;
}

/* Left side */
.second-section {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
}

.second-section h2 {
  color: #ffaa6d;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 20px;
}

.second-section p {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 15px;
}

.second-section a {
  color: #fff;
  text-decoration: underline;
}
.bottom-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bottom-section h3 {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* margin: 25px 0 15px; */
  color: #fff;
}

/* Cards */
.aeo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20px, 1fr));
  gap: 15px;
  align-items: stretch;
}

.aeo-cards span {
  display: block;
  border-radius: 12px;
  background: #f4f4f4;
  padding: 16px 12px;
  color: #506689;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}

/* Right side (image block) */
.second-img {
  flex: 1 1 30%;
  position: relative;
  background: linear-gradient(135deg, #e76100, #ff8a3d);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  /* min-height: 450px; */
  border-radius: 12px;
  overflow: hidden;
}

.bg-shape {
  position: absolute;
  max-width: 250px;
  opacity: 1;
  pointer-events: none;
}

.bg-shape.top-left {
  top: 0;
  left: 0;
  mix-blend-mode: color-dodge;
}

.bg-shape.bottom-right {
  bottom: 0;
  right: 0;
  mix-blend-mode: overlay;
}

.content-img {
  max-width: 100%;
  height: auto;
  z-index: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .second-container {
    flex-direction: column;
    text-align: center;
    gap: 2px;
  }

  .second-section {
    flex: 1 1 100%;
  }

  .second-img {
    flex: 1 1 100%;
    margin-top: 40px;
  }

  .aeo-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* table-section */
.comparison-wrap {
  padding: 80px 20px;
  color: #fff;
}

.comparison-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.comparison-container h2 {
  color: #ffaa6d;

  text-align: center;
  font-size: 36px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 30px;
}

/* Table styles */
.comparison-table {
  overflow-x: auto;
  border-radius: 12px;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 15px;
  line-height: 1.4;
  border-bottom: 1px solid #d9dbe9;
}

.comparison-table th {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 115%;
  text-align: left;
}

.comparison-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.03); /* subtle alternate row */
}

.comparison-table td {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

/* Responsive */
@media (max-width: 768px) {
  .comparison-container h2 {
    font-size: 22px;
  }

  .comparison-table th,
  .comparison-table td {
    font-size: 14px;
    padding: 12px 14px;
  }
  .comparison-wrap {
    display: none;
  }
}

/* banner */
.banner-section {
  position: relative;
  background: url("assets/banner-img.png") center/cover no-repeat;
  min-height: 400px; /* adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 12px;
  overflow: hidden;
}

/* Dark overlay for readability */
.banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* adjust darkness */
  z-index: 1;
}

.banner-overlay {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.banner-overlay h2 {
  color: #fff;

  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .banner-section {
    min-height: 300px;
    padding: 20px;
  }
  .banner-overlay h2 {
    font-size: 20px;
  }
}

/* What We Do */
.what-we-do-wrapper {
  position: relative;
  width: 100%;
  height: 180px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.what-we-do-wrapper .image-container {
  flex: 0 0 50%;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.what-we-do-bg {
  font-size: 200px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
  margin: 0;
}

.what-we-do-fg {
  font-size: 48px;
  font-weight: 600;
  color: #ffaa6d;
  z-index: 1;
}

.offer-wrap {
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
}

.what-we-do-subtext {
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
}

.what-we-do-subtext p {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 16px;
}

/* -------------------------- */
/* RESPONSIVENESS */
/* -------------------------- */

/* Tablet Screens */
@media (max-width: 1024px) {
  .what-we-do-bg {
    font-size: 150px;
  }
  .what-we-do-fg {
    font-size: 40px;
  }
  .offer-wrap {
    padding: 60px 30px;
  }
  .what-we-do-subtext p {
    font-size: 20px;
  }
}

/* Mobile Screens */
@media (max-width: 768px) {
  .what-we-do-wrapper {
    height: 140px;
  }
  .what-we-do-bg {
    font-size: 100px;
  }
  .what-we-do-fg {
    font-size: 32px;
  }
  .offer-wrap {
    padding: 40px 20px;
  }
  .what-we-do-subtext p {
    font-size: 18px;
  }
}

/* Small Mobile Screens */
@media (max-width: 480px) {
  .what-we-do-wrapper {
    height: 120px;
  }
  .what-we-do-bg {
    font-size: 70px;
  }
  .what-we-do-fg {
    font-size: 24px;
  }
  .what-we-do-subtext p {
    font-size: 16px;
  }
}
/* what we offer */
.aplha-wrap {
  background-color: #fff;
}
.section-offer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
}

.offer-header {
  display: flex;
  /* flex-direction: column; */
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.offer-title {
  color: #1f2734;

  font-size: 40px;
  font-weight: 500;
  line-height: 130%; /* 52px */
  letter-spacing: -0.8px;
  margin: 0;
}

.offer-description {
  color: #547492;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
  max-width: 600px;
}

.offer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.offer-item {
  flex: 1 1 calc(25% - 20px);
  background: #f8f9fa;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offer-item:hover {
  transform: translateY(-5px);
}

.offer-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 10px;
}

.dot-blue {
  background: #45a7de;
}
.dot-red {
  background: #ea5f38;
}
.dot-purple {
  background: #6a26f1;
}
.dot-gray {
  background: #895079;
}

.offer-item-title {
  color: #1f2734;
  font-size: 24px;
  font-weight: 500;
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.72px;
  margin: 0 0 10px;
  min-height: 100px; /* 👈 Ensures equal heading height across cards */
  display: flex;
  align-items: flex-start;
}

.offer-item-text {
  color: #547492;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin: 0;
  flex-grow: 1;
}

@media (max-width: 992px) {
  .offer-item {
    flex: 1 1 calc(50% - 20px);
  }
  .offer-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .offer-title br {
    display: none;
  }
}

@media (max-width: 600px) {
  .offer-item {
    flex: 1 1 100%;
  }
  .offer-item-title {
    min-height: auto; /* Allow natural flow on very small screens */
  }
}
/* why-section */
.why-wrap {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
  position: relative;
  padding: 40px 20px;
}

.ng-wrap {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 50%;
}

.ng-wrap p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
}

.ng-img {
  max-width: 600px;
  flex: 1 1 45%;
  margin: 0 auto;
}

.ng-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.why-we-do-bg {
  font-size: 150px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
  margin: 0;
  text-align: center;
}

/* Responsive styles */
@media (max-width: 992px) {
  .why-wrap {
    flex-direction: column;
    text-align: center;
  }

  .ng-wrap {
    max-width: 100%;
    order: 2; /* show text below image if needed */
  }

  .ng-wrap p {
    font-size: 16px;
  }

  .ng-img {
    max-width: 100%;
    order: 1;
  }
}

@media (max-width: 600px) {
  .ng-wrap p {
    font-size: 16px;
  }
}
/* cta */
.cta-section {
  background: #fff;
}

.cta-container {
  max-width: 1400px;
  padding: 60px 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text {
  flex: 1 1 600px;
}

.cta-text h2 {
  color: #222;
  font-size: 48px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 16px;
}

.cta-text p {
  color: #1f2734;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.32px;
  margin-bottom: 12px;
}

.cta-action {
  flex: 0 0 auto;
  text-align: center;
}

.cta-action p {
  color: #000;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 400;
  line-height: 20px;
}

.cta-button {
  display: inline-block;
  border-radius: 999px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button img {
  display: block;
  height: 48px;
  width: auto;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .cta-container {
    gap: 30px; /* tighter spacing */
  }

  .cta-text h2 {
    font-size: 38px;
  }

  .cta-action p {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .cta-container {
    flex-direction: column; /* stack */
    align-items: center; /* center everything */
    text-align: center;
    gap: 20px; /* reduce vertical gap */
  }

  .cta-text {
    flex: 1 1 100%;
  }

  .cta-text h2 {
    font-size: 32px;
  }

  .cta-text p {
    font-size: 14px;
  }

  .cta-action {
    flex: unset; /* reset flex */
    margin-top: 10px;
  }

  .cta-action p {
    font-size: 18px;
    line-height: 24px;
  }

  .cta-button img {
    height: 42px;
  }
}

@media (max-width: 480px) {
  .cta-text h2 {
    font-size: 26px;
    line-height: 130%;
  }

  .cta-text p {
    font-size: 13px;
    line-height: 150%;
  }

  .cta-action p {
    font-size: 16px;
    line-height: 22px;
  }

  .cta-button img {
    height: 38px;
  }
}
/* faq */
.faq-section {
  display: flex;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 80px 30px;
}

.left-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: flex-start;
  z-index: 2;
}

.right-section {
  flex: 1;
}

/* FAQ Item */
.faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid #fff;
  overflow: hidden;
  transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 18px;
}
.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item.active {
  background-color: white;
}

.faq-question {
  padding: 1.5rem;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.072px;
}

.faq-answer ul {
  padding: 20px;
}

.faq-item.active .faq-question h3 {
  color: #f97316;
}

.faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.faq-item.active .faq-question:hover {
  background-color: rgba(249, 115, 22, 0.1);
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: bold;
}

.faq-item.active .faq-question::after {
  content: "-";
  color: #f97316;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease, opacity 0.3s;
  padding: 0 1.5rem;
  color: #373737;
  opacity: 0;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.064px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1.5rem;
  padding-top: 0;
  color: #1f2937;
  opacity: 1;
}

/* Heading */
.left-section h2 {
  color: #ff8e3d;
  font-size: 62px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -1.86px;
}

/* ---------------- Responsive ---------------- */

/* Large screens (keep sticky above 1024px) */
@media (min-width: 1025px) {
  .left-section {
    position: sticky;
    top: 20px;
  }
}

/* Tablets */
@media (max-width: 1024px) {
  .faq-section {
    flex-direction: column;
    gap: 2rem;
    padding: 60px 20px;
  }
  .left-section {
    /* align-items: center; */
    text-align: center;
    width: 100%;
  }
  .left-section h2 {
    font-size: 42px;
    line-height: 120%;
  }

  .faq-question {
    font-size: 1.1rem;
  }
}

/* Small tablets / large phones */
@media (max-width: 768px) {
  .faq-section {
    padding: 50px 16px;
  }

  .left-section h2 {
    font-size: 40px;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .faq-section {
    padding: 40px 12px;
  }

  .faq-question {
    padding: 1rem;
    font-size: 1rem;
  }

  .faq-question::after {
    font-size: 1.2rem;
  }

  .faq-answer {
    padding: 0 1rem;
  }
}
