@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
.iq-page {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: #fff;
  overflow-x: hidden;
  /* Shared container for all content */
  /* ---------------------
     BREADCRUMB
  ---------------------- */
  /* ---------------------
     HERO
  ---------------------- */
  /* ---------------------
     QUOTE
  ---------------------- */
  /* ---------------------
     MARQUEE
  ---------------------- */
  /* ---------------------
     DETAILS
  ---------------------- */
  /* ---------------------
     BENEFITS
  ---------------------- */
}
.iq-page .page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 480px) {
  .iq-page .page-container {
    padding: 0 1rem;
  }
}
.iq-page .breadcrumb {
  background-color: #000435;
}
.iq-page .breadcrumb .page-container {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 1rem 1.5rem;
  font-size: 14px;
}
.iq-page .breadcrumb a {
  color: #878787;
  text-decoration: none;
  font-weight: 300;
}
.iq-page .breadcrumb a:hover {
  color: #83AAFE;
}
.iq-page .breadcrumb .gray-text {
  color: #878787;
  font-weight: 300;
}
.iq-page .breadcrumb .gray-text span {
  margin: 0 2px;
  opacity: 0.9;
}
.iq-page .breadcrumb .active {
  color: #B4E4E1;
  font-weight: 300;
}
@media (max-width: 420px) {
  .iq-page .breadcrumb .page-container {
    font-size: 12px;
    padding: 1rem;
  }
}
.iq-page .hero {
  background-color: #000435;
  color: #fff;
}
.iq-page .hero .hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 4.5rem 1.5rem 5.5rem;
}
@media (max-width: 960px) {
  .iq-page .hero .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 1.5rem 4rem;
    gap: 2.5rem;
  }
}
@media (max-width: 480px) {
  .iq-page .hero .hero-inner {
    padding: 2.5rem 1rem 3rem;
  }
}
.iq-page .hero .hero-text {
  max-width: 620px;
}
.iq-page .hero .hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #E8EEFF;
  margin: 0 0 1rem;
}
@media (max-width: 600px) {
  .iq-page .hero .hero-text h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
}
@media (max-width: 360px) {
  .iq-page .hero .hero-text h1 {
    font-size: 1.7rem;
  }
}
.iq-page .hero .hero-text p {
  font-size: 1rem;
  font-weight: 300;
  color: #C9DAFF;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 600px) {
  .iq-page .hero .hero-text p {
    font-size: 0.9rem;
    line-height: 1.45;
  }
}
@media (max-width: 360px) {
  .iq-page .hero .hero-text p {
    font-size: 0.85rem;
  }
}
.iq-page .hero .hero-image {
  display: flex;
  justify-content: center;
  width: 100%;
}
.iq-page .hero .hero-image img {
  width: 27rem;
  border-radius: 16px;
  display: block;
}
@media (max-width: 1200px) {
  .iq-page .hero .hero-image img {
    width: 22rem;
  }
}
@media (max-width: 900px) {
  .iq-page .hero .hero-image img {
    width: 20rem;
  }
}
@media (max-width: 600px) {
  .iq-page .hero .hero-image img {
    width: 15rem;
  }
}
@media (max-width: 360px) {
  .iq-page .hero .hero-image img {
    width: 13rem;
  }
}
.iq-page .quote {
  background-color: #B4E4E1;
  padding: 2rem 0;
  text-align: center;
}
.iq-page .quote .page-container {
  display: flex;
  justify-content: center;
}
.iq-page .quote p {
  font-size: 1.1rem;
  color: #000435;
  font-weight: 300;
  max-width: 1000px;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .iq-page .quote p {
    font-size: 1rem;
  }
}
@media (max-width: 360px) {
  .iq-page .quote p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}
.iq-page .categories-marquee {
  background-color: #242320;
  padding: 1rem 0;
  overflow: hidden;
}
.iq-page .categories-marquee .page-container {
  overflow: hidden;
}
.iq-page .categories-marquee .marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.iq-page .categories-marquee .track {
  display: flex;
  width: max-content;
  animation: scroll-left 40s linear infinite;
}
.iq-page .categories-marquee .track p {
  margin: 0;
  padding-right: 2rem;
  font-size: 1rem;
  font-weight: 500;
  color: #ECE6D7;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .iq-page .categories-marquee .track p {
    font-size: 0.9rem;
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.iq-page .details {
  background-color: #B4E4E1;
  padding: 4.5rem 0 1.5rem;
}
.iq-page .details h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #000435;
  margin: 0 0 2rem;
}
@media (max-width: 600px) {
  .iq-page .details h2 {
    font-size: 1.7rem;
  }
}
.iq-page .details .details-wrapper {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .iq-page .details .details-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
}
.iq-page .details .details-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  margin: 0 0 1rem;
  opacity: 0.9;
}
@media (max-width: 600px) {
  .iq-page .details .details-text p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}
.iq-page .details .details-image img {
  width: 22rem;
  border-radius: 16px;
  display: block;
}
@media (max-width: 1200px) {
  .iq-page .details .details-image img {
    width: 18rem;
  }
}
@media (max-width: 900px) {
  .iq-page .details .details-image img {
    width: 100%;
    max-width: 22rem;
  }
}
.iq-page .benefits {
  background-color: #B4E4E1;
  padding: 4.5rem 0 5rem;
}
.iq-page .benefits h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #000435;
  margin: 0 0 3rem;
}
@media (max-width: 600px) {
  .iq-page .benefits h2 {
    font-size: 1.7rem;
    margin-bottom: 2rem;
  }
}
.iq-page .benefits .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 900px) {
  .iq-page .benefits .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
}
@media (max-width: 600px) {
  .iq-page .benefits .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.iq-page .benefits .benefit-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: #000435;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  line-height: 1.5;
}
@media (max-width: 600px) {
  .iq-page .benefits .benefit-card {
    font-size: 0.95rem;
  }
}
