/* Main section container */
.section-doubt-container {
  max-width: 1518px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Header styles */
.section-doubt-header {
  margin-bottom: 40px;
}

.section-doubt-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    font-weight: 600;
    color: #1c1c1c;
    max-width: 70%;
    line-height: 120%;
}

/* Content layout */
.section-doubt-content {
  display: flex;
  gap:100px;
}

/* Image container */
.section-doubt-image-container {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  max-width: 550px;
}

.section-doubt-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* FAQ container */
.section-doubt-faq-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FAQ item */
.section-doubt-faq-item {
  border-bottom: 1px solid #9a2686;
  padding-bottom: 20px;
}

/* FAQ header */
.section-doubt-faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
}

.section-doubt-faq-question {
    font-size: 32px;
    font-weight: 600;
    color: #1c1c1c;
    line-height: 45px;
    flex: 1;
}

/* Toggle button */
.section-doubt-faq-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  flex-shrink: 0;
}

.section-doubt-faq-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #9a2686;
  stroke-width: 2;
}

/* FAQ answer */
.section-doubt-faq-answer {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #1c1C1c;
    margin-top: 10px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .section-doubt-content {
    flex-direction: column;
  }

  .section-doubt-image-container {
    display: none;
  }

  .section-doubt-title {
    font-size: 28px;
    max-width: none;
    text-align: center;
  }

  .section-doubt-faq-question {
    font-size: 22px;
  }
}
