body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #FFFFFF;
  color: #121212;
  font-size: 1.2rem; /* Increase base font size */
  line-height: 1.6; /* Improve readability */
}


.header {
  text-align: center;
  padding: 20px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.logo {
  left: 20px;
  top: 10px; /* Move closer to the header */
  width: 150px;
  height: auto;
}

.announcement-bar {
  background-color: #007BFF;
  color: #FFFFFF;
  padding: 10px;
  font-size: 14px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 20px;
}

.main-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 20px 0;
  text-align: left;
}

.cta-button {
  background-color: #F05D23;
  color: #FFFFFF;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 15px;
}

.cta-button:hover {
  background-color: #D94E1F;
}

.grid-section {
  padding: 40px 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
}

.grid-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  background-color: inherit; /* Inherit background color from parent */
  border-radius: 10px; /* Optional: match the parent border radius */
}


.text-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #FFFFFF;
  color: #121212;
}

.text-section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.text-section p {
  line-height: 1.5;
}

.text-section {
  background-color: #FFFFFF;
  padding: 40px 20px;
}

.text-container {
  max-width: 1200px; /* Limit the width of the text */
  margin: 0 auto; /* Center the text container */
  text-align: center;
  color: #121212;
}

.text-container h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.text-container p {
  line-height: 1.5;
}


.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #555;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.indicator.active {
  background-color: #F05D23;
}

p, li {
  font-size: 1.1rem;
  line-height: 1.8; 
  color: #555555;
}

/* p {
    margin-bottom: 1.5rem; 
} */

.small-statement-section {
  background-color: #ffffff;
  text-align: center;
  padding: 40px 20px;
  max-width: 1600px;
  margin: 0 auto; /* Center the section horizontally */
  display: flex;
  flex-direction: column; /* Ensure content stacks vertically */
  align-items: center; /* Center content horizontally */
}

.demo-row {
  display: flex;
  align-items: stretch; /* Ensure children stretch to match the tallest element */
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.reverse-row {
  flex-direction: row-reverse;
}

.demo-icon {
  font-size: 50px;
  color: #007BFF;
}

.demo-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.demo-image.slideshow {
  position: relative; /* Ensure slides are positioned relative to this container */
  width: 100%;
  height: 500px; /* Default height for larger screens */
  overflow: hidden; /* Prevent slides from spilling out */
  display: flex; /* Ensure proper layout for child elements */
  align-items: center; /* Center slides vertically */
  justify-content: center; /* Center slides horizontally */
}

.demo-image.slideshow .slide-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Ensure slides fill the container */
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.demo-image.slideshow .slide-screen.active {
  opacity: 1;
}

.user-reviews-section {
  background-color: #ffffff;
  padding: 40px 20px;
  text-align: center;
}

.footer {
  background-color: #404040; /* Blackish color */
  color: #FFFFFF; /* White text for contrast */
  text-align: center;
  padding: 10px;
}

.footer p {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 0; 
    color: #ffffff;
}

.app-screen-section {
  padding: 40px 20px; 
  text-align: center;
}

.reverse-row {
  flex-direction: row-reverse;
}

.demo-text {
  flex: 1;
  text-align: left;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center text vertically */
}

.statement-container.demo-text  {
  text-align: center;
  max-width: 1200px
}

.demo-text h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #121212;
}

.demo-text h2 .highlight {
  color: #007BFF;
}

.demo-text p {
  line-height: 1.6;
  color: #555555;
}

.demo-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.demo-image img {
  max-width: 100%;
  /* max-height: 400px; */
  object-fit: contain;
  border-radius: 10px;
}

@media (max-width: 480px) {
  .demo-image.slideshow {
    height: 400px;
  }

  .demo-image {
    flex: none;
  }

}

/* User Reviews Section */
/* User Reviews Section */
.user-reviews-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  position: relative; /* Ensure the section is the reference for button positioning */
}

.user-reviews-section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #121212;
}

.reviews-slider-container {
  position: relative;
  max-width: 930px;
  margin: 0 auto;
  overflow: hidden;
}

.reviews-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.avatar-circle {
  width: 70px; /* Increased size */
  height: 70px; /* Increased size */
  border-radius: 50%;
  object-fit: cover;
}

.review-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  min-width: 450px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.review-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.review-icon {
  font-size: 70px;
  color: #007BFF;
}

.review-info {
  text-align: left;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Space out name and stars */
}

.review-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #121212;
}

.review-stars {
  margin-left: auto; /* Push stars to the right */
  color: #FFD700;
}

.review-text {
  line-height: 1.6;
  color: #555555;
}

.slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #007BFF;
  color: #ffffff;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.prev-button {
  left: 10px; /* Adjusted to ensure visibility */
}

.next-button {
  right: 10px; /* Adjusted to ensure visibility */
}

.slider-button:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .review-card {
    /* min-width: 100%; */
    flex-direction: column;
    text-align: center;
    max-width: 400px;
  }

  .review-content {
    flex-direction: column;
    max-width: 400px;
  }

  .review-icon {
    font-size: 50px;
  }

  .review-text {
    font-size: 1rem;
  }

  .prev-button, .next-button {
    display: block; /* Ensure buttons are visible on smaller screens */
    width: 5px; /* Adjust size for smaller screens */
    height: 5px;
    font-size: 1.2rem;
  }
}

/* Updated Section Styles */
.small-statement-section,
.app-screen-section,
.user-reviews-section {
  max-width: 1100px;
  margin: 0 auto; /* Center the section */
  padding: 40px 20px; /* Consistent padding */
}

/* Responsive Design for Sections */
@media (max-width: 768px) {
  .small-statement-section,
  .app-screen-section,
  .user-reviews-section {
    padding: 30px 15px; /* Reduce padding for smaller screens */
  }
}

@media (max-width: 480px) {
  .small-statement-section,
  .app-screen-section,
  .user-reviews-section {
    padding: 20px 10px; /* Further reduce padding for mobile */
    text-align: center; /* Ensure proper alignment on small screens */
  }

  .review-card {
    max-width: 250px;
    min-width: none;
  }

  .review-content {
    max-width: 250px;
    min-width: none;
  }
}

/* Flex Section with Slides and Ideas */
.flex-section {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: visible;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center bottom; /* Changed from center to center bottom to show lower part of image */
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-controls {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  z-index: 10;
}

.slide-nav {
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slide-nav:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.slide-indicators {
  display: flex;
  gap: 10px;
}

.slide-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slide-indicator.active {
  background-color: #ffffff;
}

/* Ideas container and dots */
.ideas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none; /* Allow clicks to pass through to slides except on dots */
}

.idea-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
}

.idea-dot .dot {
  width: 100%;
  height: 100%;
  border-radius: 50%; 
  transition: transform 0.3s ease, filter 0.3s ease;
  position: relative; /* Allow positioning adjustments */
  top: -15px;
  left: -10px;
  background-position: -10px -15px;
}

.idea-dot.img {
  box-shadow: 0 0 0 6px rgba(128, 128, 128, 0.7); /* Slightly larger gray area on hover */
}

.idea-dot:hover img.dot {
  transform: scale(1.2); /* Scale on hover */
}

.idea-dot:hover img.dot, .idea-dot.active img.dot {
  box-shadow: 0 0 0 6px rgba(128, 128, 128, 0.7); /* Slightly larger gray area on hover */
}

.tooltip {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  pointer-events: none;
  z-index: 10; /* Ensure tooltip is above the idea dot */
}

/* Vertical tooltip positioning */
.tooltip.vertical {
  bottom: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
}

/* Horizontal tooltip positioning */
.tooltip.horizontal {
  top: 50%;
  left: calc(100% + 15px);
  transform: translateY(-50%);
  width: 500px;
  display: flex;
}

.tooltip.horizontal-left {
  top: 50%;
  right: calc(100% + 15px); /* Position the tooltip to the left of the element */
  transform: translateY(-50%);
  width: 500px;
  display: flex;
}

.idea-dot:hover .tooltip {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.tooltip-content {
  display: flex;
  flex-direction: column;
}

.tooltip.horizontal .tooltip-content , .tooltip.horizontal-left .tooltip-content {
  flex-direction: row;
  gap: 15px; /* Add gap between image and text blocks */
}

.tooltip-content img {
  width: auto; /* Allow image size to adapt automatically */
  max-width: 100%;
  height: auto;
  border-radius: 10px; /* Add rounding for picture */
}

.tooltip img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.tooltip-content img {
  display: block;
}

.tooltip-text p {
  display: block;
}

.tooltip-text .tooltip-short-text {
  display: none;
}

.tooltip-content img {
  width: 40%;
  height: auto;
}

.tooltip-content img:hover {
  transform: none; /* Disable image scaling on hover */
}

.tooltip-text {
  padding: 15px;
}

.tooltip-text h3 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  color: #121212;
}

.tooltip-text p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #555555;
  display: block;
}

@media (max-width: 768px) {
  .tooltip-content img {
    display: none;
  }

  .tooltip-text p {
    display: none;
  }

  .tooltip-text {
    padding: 5px; /* Decrease padding for mobile */
  }
}

@media (max-width: 768px) {
  .tooltip-text p {
    display: none;
  }
}

/* Responsive styles for flex section */
@media (max-width: 768px) {
  .flex-section {
    height: 400px;
  }
  
  .tooltip.vertical, .tooltip.horizontal {
    width: 220px;
    left: 50%;
    bottom: calc(100% + 15px);
    transform: translateX(-50%);
  }
  
  .tooltip.horizontal {
    top: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .tooltip.horizontal .tooltip-content {
    flex-direction: column;
  }
  
  .tooltip.horizontal img {
    width: 100%;
  }


}

@media (max-width: 480px) {
  .flex-section {
    height: 300px;
  }
  
  .idea-dot {
    width: 15px;
    height: 15px;
  }
  
  .tooltip.vertical, .tooltip.horizontal, .tooltip.horizontal-left {
    max-width: max-content;
  }
  
  .tooltip-text h3 {
    font-size: 0.8rem;
    margin: 0;
  }
  
  .tooltip-text p {
    font-size: 0.8rem;
  }
}

@keyframes pulsate {
  0% {
    transform: scale(1.0) rotate(0deg);
  }
  25% {
    transform: scale(1.2) rotate(90deg);
  }
  75% {
    transform: scale(0.8) rotate(270deg);
  }
  100% {
    transform: scale(1.0) rotate(360deg);
  }
}

.dot {
  animation: pulsate 2s linear calc(var(--random-start, 0) * 1ms) infinite normal;
  /* animation-delay: calc(var(--random-start, 0) * 1ms); */ /* Use milliseconds for random start */ 
}

.tooltip-mobile {
  background-color: #eeeded;
  padding: 40px 20px;
  text-align: center;
  animation: slide-down 1.0s ease-in-out;
}

.tooltip-mobile.hidden {
  display: none;
}

.tooltip-mobile .demo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.tooltip-mobile .demo-text {
  flex: 1;
  text-align: left;
  max-width: 500px;
}

.tooltip-mobile .demo-text h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #121212;
  text-align: center; /* Center the text horizontally */
  display: flex; /* Use flexbox for centering */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

.tooltip-mobile .demo-text p {
  line-height: 1.6;
  color: #555555;
}

.tooltip-mobile .demo-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-rows {
  display: flex;
  flex-direction: column; /* Arrange items in a column */
  align-items: center; /* Center items horizontally */
  gap: 10px; /* Add spacing between rows */
}

.tooltip-mobile .demo-image img {
  max-width: 100%;
  max-height: 250px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.highlight-button {
  background-color: #F05D23;
  color: #FFFFFF;
  padding: 2px 15px;
  border-radius: 50px 10px;
  font-size: 1.3rem;
  margin: 5px; 
  display: inline-block;
  cursor: default;
  text-transform: none;
}

.highlight-button.small {
  font-size: 1.1rem;
  margin: 0px;
  margin-right: 5px;
  margin-left: 5px;
}

.highlight-text {
  background-color: #F05D23;
  color: #FFFFFF;
  padding: 2px 15px;
  border-radius: 50px 10px;
  display: inline-block;
  cursor: default;
  text-transform: none;
}


section {
  border-bottom: 1px solid #ccc;
}

.early-adopters {
  background-color: #ffffff;
  text-align: center;
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.early-adopters .statement-container {
  max-width: 600px;
  margin: 0 auto;
}

.early-adopters h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #121212;
}

.early-adopters p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.signup-form input[type="email"] {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  max-width: 300px;
}

.signup-form button {
  background-color: #F05D23;
  color: #FFFFFF;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.signup-form button:hover {
  background-color: #D94E1F;
}



/* Responsive Design */
@media (max-width: 768px) {
  .main-heading {
    font-size: 1.3rem;
  }

  .logo {
    width: 75px;
  }

  .demo-text h2 , .tooltip-mobile .demo-text h2 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;
  }

  
  .demo-row {
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center align items in column layout */
  }

  .demo-text > h2 {
    text-align: center;
  }

  .demo-text > p {
    text-align: left;
  }

  .demo-image.slideshow {
    width: 100%; 
    display: block; 
  }

  .demo-image {
    flex: none;
  }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.button-group {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.preview-button {
    background-color: #808080 !important; /* Different color to distinguish from main button */
}

.preview-button:hover {
    background-color: #666666 !important;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #4CAF50;
    overflow: hidden; /* Hide overflow to prevent artifacts */
}

.check-icon::before {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
    opacity: 0; /* Start hidden */
    animation: mask-left 0.75s ease-in forwards;
}

.check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
    opacity: 0; /* Start hidden */
    animation: mask-right 0.75s ease-in forwards;
}

.check-icon::before, .check-icon::after {
    content: '';
    height: 100px;
    position: absolute;
    background: #FFFFFF;
    transform: rotate(-45deg);
}

.check-icon .icon-line {
    height: 5px;
    background-color: #4CAF50;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.check-icon .icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}

.check-icon .icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}

@keyframes mask-left {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes mask-right {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Keep existing animation keyframes for icon-line-tip and icon-line-long */


@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 46px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

/* Modern list styles - additional styles */
.app-screen-section .demo-text ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.app-screen-section .demo-text li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  transition: transform 0.2s ease;
}

.app-screen-section .demo-text li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-45%);
  width: 25px;
  height: 25px;
  background-color: #F05D23;
  border-radius: 50%;
  opacity: 0.15;
  transition: opacity 0.2s ease;
}

.app-screen-section .demo-text li:after {
  content: "→";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-45%);
  color: #F05D23;
  font-size: 14px;
  font-weight: bold;
}

.app-screen-section .demo-text li:hover {
  transform: translateX(5px);
}

.app-screen-section .demo-text li:hover:before {
  opacity: 0.3;
}

.inline-numbered-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  gap: 15px;
  justify-content: center; /* Center items horizontally */
  counter-reset: item; /* Reset counter */
}

.inline-numbered-list li {
  position: relative;
  padding-left: 25px;
  color: #555555;
  display: flex; /* Enable flexbox for vertical alignment */
  align-items: center; /* Center items vertically */
}

.inline-numbered-list li::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 0;
  top: 50%; /* Position vertically */
  transform: translateY(-50%); /* Center the circle vertically */
  width: 20px;
  height: 20px;
  background-color: #F05D23;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .inline-numbered-list {
    flex-direction: column;
    gap: 5px; /* Reduce gap for mobile */
    align-items: flex-start; /* Align items to the left on mobile */
  }

  .inline-numbered-list li {
    font-size: 0.9rem;
  }
}

/* FAQ Section */
.faq-section {
  background-color: #ffffff;
  text-align: left;
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-section .statement-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #121212;
  text-align: center;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
  background-color: #f8f9fa;
  padding: 0px 10px 0px 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #e9ecef;
}

.faq-question h3 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #121212;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: #F05D23;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
  padding: 20px;
  max-height: 500px;
}

.faq-answer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .faq-section h2, .early-adopters h2, .user-reviews-section h2 {
    font-size: 1.4rem;
  }

}

/* Interaction hint popup */
.interaction-hint {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  z-index: 20;
  animation: fadeInOut 6s ease-in-out forwards;
  font-size: 0.9rem;
  max-width: 300px;
  text-align: center;
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateX(-50%) translateY(-10px); }
  15% { opacity: 1; transform: translateX(-50%) translateY(0); }
  85% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(-10px); }
}

@media (max-width: 768px) {
  .interaction-hint {
    font-size: 0.8rem;
    padding: 10px 15px;
    max-width: 250px;
  }
}