/* FAQ Section */
.faq {
  background: #fff;
  padding: 45px 0 60px 0;
  position: relative;
}

.faq-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 46px;
  font-weight: 600;
  color: #1C1E36;
  text-align: center;
  margin-bottom: 0;
}

.faq-subtitle {
  font-family: 'Urbanist', sans-serif;
  font-size: 24px;
  color: #404040;
  text-align: center;
  margin: 18px 0 40px 0;
  max-width: 700px;
}

.faq-items {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.faq-item {
  background: white;
  border-radius: 16px;
  box-shadow: 0 3px 4px 0px rgba(0, 0, 0, 0.25);
  border: 1px solid #D2D2D2;
  overflow: hidden;
  transition: box-shadow 0.2s, border 0.2s;
}

.faq-item:hover {
  box-shadow: 0 8px 32px rgba(44,44,44,0.16);
}

.faq-item.active {
  border: 2px solid #23253a;
}

.faq-question {
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Urbanist', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #121212;
  text-transform: capitalize;
  transition: background-color 0.2s;
  user-select: none;
}

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

.faq-icon {
  font-size: 28px;
  font-weight: 300;
  color: #7c7edc;
  transition: transform 0.3s ease;
  min-width: 28px;
  text-align: center;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #f9f9f9;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 32px 28px 32px;
}

.faq-answer p {
  font-family: 'Urbanist', sans-serif;
  font-size: 19px;
  color: #404040;
  line-height: 1.6;
  margin: 0;
  padding-top: 8px;
}

/* Tablet Styles */
@media (max-width: 1100px) {
  .faq-container {
    padding: 0 16px;
  }
  
  .faq-title {
    font-size: 36px;
  }
  
  .faq-subtitle {
    font-size: 22px;
    max-width: 100%;
  }
  
  .faq-question {
    font-size: 20px;
    padding: 24px 24px;
  }
  
  .faq-answer p {
    font-size: 18px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 24px 24px 24px;
  }
}

/* Mobile Styles */
@media (max-width: 767px) {
  .faq {
    padding: 16px 0 48px 0;
  }

  .faq-container {
    padding: 0 12px;
  }

  .faq-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .faq-subtitle {
    font-size: 16px;
    margin: 16px 0 32px 0;
  }

  .faq-items {
    gap: 12px;
    margin-top: 24px;
  }

  .faq-item {
    border-radius: 12px;
  }

  .faq-question {
    font-size: 18px;
    padding: 20px 16px;
    gap: 16px;
  }

  .faq-icon {
    font-size: 24px;
    min-width: 24px;
  }

  .faq-answer p {
    font-size: 16px;
    line-height: 1.5;
  }

  .faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 16px 20px 16px;
  }
}