/* help-banner section  */

.main-section {
  background: rgba(166, 90, 138, 0.06);
}

.help-banner-section {


  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.help-banner-content {
  flex: 1;
  max-width: 600px;
}

.help-banner-header h1 {
  font-size: 56px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.2;
}

.help-banner-header p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 32px;
}

.help-banner-button {
  display: inline-block;
  background: linear-gradient(135deg, #b87599 0%, #a65a8a 100%);
  color: white;
  padding: 16px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.help-banner-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(166, 90, 138, 0.3);
}

.help-banner-image {
  flex: 1;
  max-width: 650px;
}

.help-banner-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

@media (max-width: 968px) {
  .help-banner-section {
    flex-direction: column;
    padding: 60px 30px;
    gap: 40px;
  }

  .help-banner-content {
    max-width: 100%;
  }

  .help-banner-header h1 {
    font-size: 40px;
  }

  .help-banner-header p {
    font-size: 16px;
  }

  .help-banner-image {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .help-banner-section {
    padding: 40px 20px;
  }

  .help-banner-header h1 {
    font-size: 32px;
  }

  .help-banner-button {
    width: 100%;
  }
}

/* other section  */
/* Quick Help Categories Section */
.help-categories-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.help-categories-header {
  text-align: center;
  margin-bottom: 50px;
}

.help-categories-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.help-categories-subtitle {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.help-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.help-category-card {
  padding: 30px 25px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.help-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.help-category-pink {
  border-radius: 30px;
  background: rgba(166, 90, 138, 0.06);
}

.help-category-teal {
  border-radius: 30px;
  background: #e8f7f6;
}

.help-category-blue {
  border-radius: 30px;
  background: rgba(76, 109, 191, 0.1);
}

.help-category-red {
  border-radius: 30px;
  background: rgba(239, 69, 69, 0.1);
}

.help-category-cyan {
  border-radius: 30px;
  background: rgba(15, 147, 255, 0.1);
}

.help-category-yellow {
  border-radius: 30px;
  background: #f7f5e8;
}

.help-category-icon {
  width: 75px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.help-category-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.help-icon-pink {
  background: linear-gradient(135deg, #ec407a 0%, #d81b60 100%);
}

.help-icon-teal {
  background: linear-gradient(135deg, #26a69a 0%, #00897b 100%);
}

.help-icon-blue {
  background: linear-gradient(135deg, #5c6bc0 0%, #3949ab 100%);
}

.help-icon-red {
  background: linear-gradient(135deg, #ef5350 0%, #e53935 100%);
}

.help-icon-cyan {
  background: linear-gradient(135deg, #26c6da 0%, #00acc1 100%);
}

.help-icon-yellow {
  background: linear-gradient(135deg, #ffee58 0%, #fdd835 100%);
}

.help-category-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.help-category-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* Top Questions Section */
.questions-section {
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
  padding: 60px 20px;
}

.questions-container {
  max-width: 900px;
  margin: 0 auto;
}

.questions-header {
  text-align: center;
  margin-bottom: 50px;
}

.questions-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.questions-subtitle {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.questions-background {
  border-radius: 20px;
  padding: 50px 40px;
}

.questions-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.question-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.question-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.question-header {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.question-text {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.question-icon {
  color: #999;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.question-item.active .question-icon {
  transform: rotate(180deg);
}

.question-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 25px;
}

.question-item.active .question-answer {
  max-height: 500px;
  padding: 0 25px 20px;
}

.question-answer-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
}

/* Safety Banner Section */
.safety-banner {
  background: linear-gradient(135deg, #b76e9e 0%, #9d5b88 70%);
  padding: 40px 20px;
  text-align: center;
  color: white;
}

.safety-banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.safety-banner-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.safety-icon {
  width: 28px;
  height: 28px;
}

.safety-banner-text {
  font-size: 1rem;
  opacity: 0.95;
}

/* Still Need Help Section */
.support-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.support-header {
  text-align: center;
  margin-bottom: 50px;
}

.support-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.support-subtitle {
  font-size: 1rem;
  color: #666;
}

.support-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.support-card {
  padding: 50px;
  border-radius: 20px;
  text-align: center;
}

.support-card-teal {
  background: linear-gradient(135deg, #e0f7f4 0%, #b2dfdb 100%);
}

.support-card-pink {
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
}

.support-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.support-icon-teal {
  background: linear-gradient(135deg, #26a69a 0%, #00897b 100%);
}

.support-icon-red {
  background: linear-gradient(135deg, #ef5350 0%, #e53935 100%);
}

.support-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.support-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.support-card-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 25px;
}

.support-button {
  padding: 14px 35px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
}

.support-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.support-button-teal {
  background: linear-gradient(135deg, #26a69a 0%, #00897b 100%);
}

.support-button-red {
  background: linear-gradient(135deg, #ef5350 0%, #e53935 100%);
}

/* Contact Form Section */
.contact-section {

  margin: 0 auto;
  padding: 0 20px 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  padding-top: 20px;
}

.contact-info-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.3;
}

.contact-info-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  stroke: #ec407a;
  fill: none;
  stroke-width: 2;
}

.contact-info-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.contact-info-content p {
  font-size: 0.95rem;
  color: #666;
}

.contact-form-wrapper {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 40px;
}

.contact-form-group {
  margin-bottom: 25px;
}

.contact-form-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.contact-form-input,
.contact-form-textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
  outline: none;
  border-color: #b76e9e;
}

.contact-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #b76e9e 0%, #9d5b88 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(183, 110, 158, 0.3);
}

.contact-form-submit svg {
  width: 20px;
  height: 20px;
}

/* Responsive Styles */
@media (max-width: 968px) {
  .help-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-cards {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {

  .help-categories-title,
  .questions-title,
  .support-title {
    font-size: 2rem;
  }

  .help-categories-grid {
    grid-template-columns: 1fr;
  }

  .questions-background {
    padding: 30px 20px;
  }

  .contact-info-title {
    font-size: 1.7rem;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }
}