.elementor-818 .elementor-element.elementor-element-6d6109c{--display:flex;--justify-content:center;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-818 .elementor-element.elementor-element-d44fea1{--display:flex;--justify-content:center;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}@media(min-width:768px){.elementor-818 .elementor-element.elementor-element-d44fea1{--content-width:1200px;}}/* Start custom CSS for html, class: .elementor-element-7d8e15a *//* MaxValid FAQ Section - Standalone CSS */

/* Import font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* Root wrapper styles */
#maxvalid-faq-root {
  box-sizing: border-box;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #f8fafc;
  width: 100%;
}

#maxvalid-faq-root *,
#maxvalid-faq-root *::before,
#maxvalid-faq-root *::after {
  box-sizing: border-box;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.maxvalid-faq-wrapper {
  width: 100%;
  background: #f8fafc;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Main Content */
.maxvalid-faq-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 24px;
}

/* Page Header */
.maxvalid-faq-page-header {
  text-align: center;
  margin-bottom: 60px;
}

.maxvalid-faq-main-title {
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.maxvalid-faq-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Category Section */
.maxvalid-faq-category {
  margin-bottom: 48px;
}

.maxvalid-faq-category-title {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 24px;
}

/* FAQ Item */
.maxvalid-faq-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.maxvalid-faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.maxvalid-faq-question-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
}

.maxvalid-faq-question-content {
  flex: 1;
}

/* Category Badges */
.maxvalid-faq-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.maxvalid-faq-badge-general {
  background: #dbeafe;
  color: #1e40af;
}

.maxvalid-faq-badge-development {
  background: #fef3c7;
  color: #92400e;
}

.maxvalid-faq-badge-pricing {
  background: #dcfce7;
  color: #166534;
}

.maxvalid-faq-badge-technical {
  background: #f3e8ff;
  color: #6b21a8;
}

.maxvalid-faq-badge-ai {
  background: #ffe4e6;
  color: #9f1239;
}

/* Question */
.maxvalid-faq-question {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  line-height: 1.5;
  transition: all 0.3s ease;
}

/* Icon */
.maxvalid-faq-icon {
  flex-shrink: 0;
  margin-top: 8px;
  transition: transform 0.3s ease;
}

.maxvalid-faq-icon.maxvalid-faq-active {
  transform: rotate(180deg);
}

/* Answer */
.maxvalid-faq-answer {
  color: #475569;
  font-size: 16px;
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.maxvalid-faq-answer.maxvalid-faq-active {
  max-height: 1000px;
  padding-top: 16px;
}

.maxvalid-faq-answer p {
  margin: 0;
}

.maxvalid-faq-answer-intro {
  margin: 0 0 12px !important;
}

/* FAQ Lists */
.maxvalid-faq-list {
  margin: 0;
  padding-left: 24px;
}

.maxvalid-faq-list li {
  margin-bottom: 8px;
}

.maxvalid-faq-list li:last-child {
  margin-bottom: 0;
}

/* CTA Section */
.maxvalid-faq-cta {
  background: #1e293b;
  padding: 48px;
  border-radius: 16px;
  text-align: center;
  margin-top: 60px;
}

.maxvalid-faq-cta-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.maxvalid-faq-cta-text {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 32px;
  line-height: 1.6;
}

.maxvalid-faq-cta-button {
  display: inline-block;
  background: #3b82f6;
  color: white;
  padding: 16px 40px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease;
}

.maxvalid-faq-cta-button:hover {
  background: #2563eb;
}

/* Responsive Design */
@media (max-width: 768px) {
  .maxvalid-faq-main {
    padding: 40px 16px;
  }

  .maxvalid-faq-page-header {
    margin-bottom: 40px;
  }

  .maxvalid-faq-category-title {
    font-size: 24px;
  }

  .maxvalid-faq-item {
    padding: 20px;
  }

  .maxvalid-faq-question {
    font-size: 18px;
  }

  .maxvalid-faq-question-wrapper {
    gap: 12px;
  }

  .maxvalid-faq-cta {
    padding: 32px 24px;
  }

  .maxvalid-faq-cta-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .maxvalid-faq-badge {
    font-size: 12px;
    padding: 4px 12px;
  }

  .maxvalid-faq-question {
    font-size: 17px;
  }

  .maxvalid-faq-answer {
    font-size: 15px;
  }

  .maxvalid-faq-icon {
    width: 20px;
    height: 20px;
  }

  .maxvalid-faq-cta-button {
    width: 100%;
    max-width: 300px;
  }
}/* End custom CSS */