/* FAQ Section - Production Safe */
body .faq-section {
  display: block;
  width: 100%;
  clear: both;
  padding: 90px 20px;
  background: #fafbfc;
}

body .faq-section *,
body .faq-section *::before,
body .faq-section *::after {
  box-sizing: border-box;
}

body .faq-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* Header */
body .faq-section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px;
}

body .faq-section .section-kicker {
  display: inline-block;
  padding: 8px 20px;
  background: #2185c5;
  color: #ffffff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}

body .faq-section-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 18px;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

body .faq-section-header p {
  font-size: 16px;
  line-height: 1.75;
  color: #2c3e50;
  margin: 0;
}

/* Layout */
body .faq-layout {
  display: flex !important;
  gap: 32px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

/* Cards */
body .faq-left-card,
body .faq-accordion {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

body .faq-left-card {
  flex: 0 0 38%;
  padding: 42px;
  position: sticky;
  top: 95px;
}

body .faq-accordion {
  flex: 1;
  padding: 16px;
}

/* Left Card Content */
body .faq-left-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 18px;
  line-height: 1.3;
}

body .faq-left-card > p {
  font-size: 15px;
  line-height: 1.75;
  color: #2c3e50;
  margin: 0 0 26px;
}

body .faq-highlight-box {
  background: linear-gradient(135deg, rgba(0, 170, 255, 0.08), rgba(33, 133, 197, 0.04));
  border: 1px solid rgba(33, 133, 197, 0.16);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 28px;
}

body .faq-highlight-box span {
  display: block;
  color: #2185c5;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}

body .faq-highlight-box strong {
  display: block;
  color: #1a1a1a;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 8px;
}

body .faq-highlight-box p {
  color: #2c3e50;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* FAQ Button */
body .faq-section .modern-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #00aaff 0%, #0088cc 100%);
  color: #ffffff !important;
  border-radius: 12px;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(0, 170, 255, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

body .faq-section .modern-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 170, 255, 0.4);
  color: #ffffff !important;
  text-decoration: none !important;
}

/* Accordion */
body .faq-item {
  display: block;
  border-bottom: 1px solid #e8e8e8;
  transition: all 0.25s ease;
}

body .faq-item:last-child {
  border-bottom: none;
}

body .faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 18px;
  color: #1a1a1a;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

body .faq-item summary::-webkit-details-marker {
  display: none;
}

body .faq-item p {
  color: #2c3e50;
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
  padding: 0 18px 24px;
}

body .faq-item[open] {
  background: rgba(33, 133, 197, 0.04);
  border-radius: 8px;
  border-bottom-color: transparent;
  margin-bottom: 8px;
}

body .faq-item:hover summary {
  color: #2185c5;
}

/* Plus Icon */
body .faq-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00aaff 0%, #0088cc 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 170, 255, 0.25);
}

body .faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 992px) {
  body .faq-section {
    padding: 70px 20px;
  }

  body .faq-layout {
    flex-direction: column !important;
  }

  body .faq-left-card,
  body .faq-accordion {
    width: 100%;
    flex: none;
  }

  body .faq-left-card {
    position: relative;
    top: auto;
  }

  body .faq-section-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  body .faq-section {
    padding: 60px 18px;
  }

  body .faq-section-header {
    margin-bottom: 34px;
  }

  body .faq-section-header h2 {
    font-size: 28px;
  }

  body .faq-left-card {
    padding: 28px;
  }

  body .faq-left-card h3 {
    font-size: 24px;
  }

  body .faq-highlight-box strong {
    font-size: 24px;
  }

  body .faq-item summary {
    padding: 20px 14px;
    font-size: 16px;
  }

  body .faq-item p {
    padding: 0 14px 20px;
  }
}

@media (max-width: 480px) {
  body .faq-section-header h2 {
    font-size: 24px;
  }

  body .faq-left-card {
    padding: 24px;
  }

  body .faq-accordion {
    padding: 10px;
  }

  body .faq-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: 20px;
  }

  body .faq-section .modern-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
  }
}