@font-face {
  font-family: 'Montserrat';
  src: url('/asset/fonts/Montserrat/static/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: #f0f0f0;
}

.container {
  display: flex;
  height: 100vh;
}


.sidebar {
  width: 350px;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 80px;
}

.sidebar h2 {
  font-weight: 500;
  font-size: 40px;
  font-family: 'Montserrat';
  color: #273043;
}

.tabs {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.tabs a {
  margin: 0 20px;
  text-decoration: none;
  color: #bbb;
  font-weight: 400;
  border-bottom: 2px solid transparent;
  padding-bottom: 5px;
}

.tabs .active {
  color: #fff;
  border-color: #1d72f3;
}

.accordion-item {
  border-bottom: 1px solid #333;
  padding: 10px 0;
}

.accordion {
  margin-bottom: 30px;
}

.question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.answer {
  display: none;
  padding: 10px 0;
  color: #bbb;
}

.footer .links a {
  display: block;
  margin: 5px 0;
  text-decoration: none;
  color: #666;
}

.footer .social i {
  margin: 0 10px;
  color: #666;
}

.faq-section .tabs a {
  margin-right: 20px;
  text-decoration: none;
  color: #fff;
  font-weight: 300;
}

.faq-section .tabs .active {
  border-bottom: 2px solid #fff;
}

.faq-section h2 {
  color: #9999A3;
  font-weight: normal;
  font-size: 24px;
  margin: 15px 0;
}

.faq-section .view-more {
  color: #9999A3;
  font-weight: 500;
  font-size: 16px;
}

.question {
  padding: 10px 0;
  cursor: pointer;
}

.partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 40px;
}

.partners h2 {
  color: #fff;
  font-weight: normal;
  font-size: 16px;
  margin-bottom: 10px;
}

.partner-logos {
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
  height: 80px;
  margin-top: 20px;
  max-width: 826px;
}

.partner-logos-inner {
  display: flex;
  animation: scroll 15s linear infinite;
}

.partner-logos img {
  margin-right: 20px;
  height: 48px;
}

/* Keyframes for infinite scrolling */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Optional: Pause animation on hover */
.partner-logos:hover .partner-logos-inner {
  animation-play-state: paused;
}

.testimonials {
  margin-top: 40px;
}

.contact {
  margin-top: 40px;
}

.qr-code {
  display: flex;
  align-items: center;
}

.app-links img {
  margin-left: 10px;
}

.trust-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-top: 100px;
}

.trustpilot-section {
  flex: 1;
}

.trustpilot-section .rating {
  text-align: center;
}

.trustpilot-section .stars {
  font-size: 24px;
  color: #00b67a;
}

.trustpilot-section p.trustpilot {
  color: #00b67a;
}

.reviews-wrapper {
  flex: 3;
  overflow: hidden;
  position: relative;
}

.reviews {
  display: flex;
  gap: 20px;
  overflow-x: scroll;
  padding-bottom: 20px;
}

.reviews::-webkit-scrollbar {
  display: none;
}

.review-card {
  background-color: #1b2330;
  padding: 20px;
  min-width: 300px;
  text-align: left;
  border: 2px solid #00b67a;
  transition: transform 0.3s, border-color 0.3s;
  cursor: grab;
}

.review-card:hover {
  border-color: #00d493;
}

.review-card:active {
  cursor: grabbing;
}

.review-card .stars {
  color: #00b67a;
}

.review-card .title {
  font-size: 18px;
  margin: 10px 0;
}

.review-card .description {
  font-size: 14px;
  color: #ccc;
}

.review-card .name,
.review-card .time {
  font-size: 12px;
  margin-top: 10px;
  color: #999;
}

.contact {
  text-align: center;
  padding: 40px 20px;
  background: url("../images/chat_bg.png") no-repeat;
  background-size: cover;
  color: white;
  width: 100%;
  min-height: 800px;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  padding-top: 80px;
}

.contact p {
  font-size: 1.2rem;
  margin-bottom: 50px;
  margin-top: 50px;
}

.qr-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.qr-code {
  width: 150px;
  height: 150px;
}

.download-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.download-buttons img {
  width: 150px;
  height: 50px;
}

.phone-input {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
  }
  
  .phone-input input {
    padding: 10px;
    width: 200px;
    border: 1px solid #fff;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1rem;
    transition: background-color 0.3s;
  }
  
  .phone-input input::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }

/* Outlined Button Styling */
.outlined-button {
  padding: 9px 10px;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.outlined-button .arrow {
  font-size: 1.2rem;
}

.outlined-button:hover {
  background-color: #fff;
  color: #000;
  border-color: #ddd;
}

.qr-code-store {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 80px;
    text-align: center;
  }
  
  .qr-code-column {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .qr-code {
    width: 69px;
    height: 69px;
  }
  
  .qr-info-column {
    text-align: center;
  }
  
  .qr-info-column p {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .app-links {
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }
  
  .app-links img {
    width: 120px;
    height: auto;
  }

/* Responsive design for smaller screens */
@media (max-width: 600px) {
  .contact h2 {
    font-size: 2rem;
  }

  .contact p {
    font-size: 1rem;
  }

  .qr-code {
    width: 120px;
    height: 120px;
  }

  .download-buttons img {
    width: 120px;
    height: 40px;
  }

  .phone-input input {
    width: 180px;
  }
}

.answer {
  display: none;
  padding: 0.5em 0;
}
.answer.visible {
  display: block;
}
