/* ===== PREMIUM FAQ PAGE STYLES ===== */

/* FAQ Hero Section */
.faq-hero {
  position: relative;
  height: 45vh;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e392f 0%, #2a4a3f 50%, #1e392f 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 57, 47, 0.3) 0%,
    rgba(30, 57, 47, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  padding-top: 3rem;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #fdfdf5;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(253, 253, 245, 0.9);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.faq-hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--muted-gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.hero-particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.hero-particle:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.hero-particle:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translateY(-20px) scale(1.2);
    opacity: 0.6;
  }
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(to bottom, #ffffff 0%, #fdfdf5 100%);
  padding: 3rem 0;
  position: relative;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* FAQ Grid */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* FAQ Item */
.faq-item {
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(30, 57, 47, 0.08);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(218, 165, 32, 0.2);
}

.faq-item.active {
  box-shadow: 0 8px 32px rgba(218, 165, 32, 0.15);
  border-color: var(--muted-gold);
}

/* FAQ Question */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer !important;
  user-select: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.faq-question:hover {
  background: rgba(218, 165, 32, 0.03);
}

.question-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--deep-green-text);
  line-height: 1.3;
  margin: 0;
  padding-right: 1rem;
  flex: 1;
}

.question-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--muted-gold), var(--gold-accent));
  border-radius: 50%;
  color: var(--deep-green-text);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .question-icon {
  transform: rotate(180deg);
}

.question-icon svg {
  transition: transform 0.3s ease;
}

/* FAQ Answer - Force closed by default */
.faq-answer {
  display: none !important;
  overflow: hidden;
}

.faq-item.active .faq-answer {
  display: block !important;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.answer-content {
  padding: 0 1.5rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6c757d;
}

.answer-content p {
  margin-bottom: 1rem;
}

.answer-content p:last-child {
  margin-bottom: 0;
}

/* Answer Highlight Box */
.answer-highlight {
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.05), rgba(218, 165, 32, 0.08));
  border-left: 3px solid var(--muted-gold);
  padding: 1rem;
  border-radius: 6px;
  margin: 1rem 0;
}

.answer-highlight h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-green-text);
  margin-bottom: 0.5rem;
}

.answer-highlight p {
  margin-bottom: 0;
  color: #495057;
  font-size: 0.9rem;
}

/* Combustion Comparison Visual */
.combustion-comparison {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  border: 1px solid rgba(30, 57, 47, 0.1);
}

.comparison-label {
  font-weight: 600;
  color: var(--deep-green-text);
  margin-bottom: 1.5rem;
  text-align: center;
}

.comparison-visual {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}

.visual-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 150px;
}

.visual-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.visual-icon.without {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
}

.visual-icon.with {
  background: linear-gradient(135deg, var(--muted-gold), var(--gold-accent));
  color: var(--deep-green-text);
}

.visual-item span {
  font-weight: 600;
  color: var(--deep-green-text);
}

.efficiency-bar {
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.efficiency-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease;
}

.efficiency-bar.low::after {
  width: 40%;
  background: linear-gradient(90deg, #dc3545, #c82333);
}

.efficiency-bar.high::after {
  width: 95%;
  background: linear-gradient(90deg, var(--muted-gold), var(--gold-accent));
}

.arrow-transform {
  font-size: 2rem;
  color: var(--muted-gold);
  font-weight: bold;
}

/* Stats Showcase */
.stats-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.stat-box {
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.05), rgba(218, 165, 32, 0.1));
  padding: 1rem 0.75rem;
  border-radius: 6px;
  text-align: center;
  border: 1px solid rgba(218, 165, 32, 0.2);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(218, 165, 32, 0.2);
}

.stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #B8860B !important;
  margin-bottom: 0.2rem;
  line-height: 1.1;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  
  line-height: 1.2;
}

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, #1e392f, #2a4a3f);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  color: white;
}

/* Download Section */
.download-section {
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(218, 165, 32, 0.3);
}

.download-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.download-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--muted-gold), var(--gold-accent));
  border-radius: 50%;
  color: var(--deep-green-text);
}

.download-content {
  flex: 1;
}

.download-content h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted-gold);
  margin-bottom: 0.25rem;
}

.download-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
}

.download-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, var(--muted-gold), var(--gold-accent));
  color: var(--deep-green-text);
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.download-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(218, 165, 32, 0.3);
  color: var(--deep-green-text);
  text-decoration: none;
}

.cta-box p {
  color: rgba(253, 253, 245, 0.9);
  margin-bottom: 1rem;
}

.cta-box strong {
  color: var(--muted-gold);
}

.contact-info {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 1rem !important;
  margin-top: 1.5rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  flex-wrap: nowrap !important;
  justify-content: center !important;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.contact-divider {
  color: var(--muted-gold);
  font-size: 1rem;
  opacity: 0.6;
  flex-shrink: 0;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.contact-item svg {
  color: var(--muted-gold);
  flex-shrink: 0;
}

.contact-item a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--muted-gold);
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(218, 165, 32, 0.03);
  border-radius: 8px;
  border-left: 3px solid var(--muted-gold);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(218, 165, 32, 0.08);
  transform: translateX(4px);
}

.benefit-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-gold);
}

.benefit-item span {
  color: #495057;
  line-height: 1.6;
}

/* Environmental Benefits */
.environmental-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.env-benefit-card {
  background: white;
  padding: 1.25rem 1rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(30, 57, 47, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.env-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--muted-gold);
}

.env-benefit-card.highlight {
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.05), rgba(218, 165, 32, 0.1));
  border-color: var(--muted-gold);
}

.env-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--muted-gold), var(--gold-accent));
  border-radius: 50%;
  color: var(--deep-green-text);
}

.env-benefit-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep-green-text);
  margin-bottom: 0.25rem;
}

.env-benefit-card p {
  font-size: 0.85rem;
  color: #6c757d;
  margin: 0;
}

/* Safety Badge */
.safety-badge {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #28a745, #20c997);
  border-radius: 50%;
  color: white;
}

.emphasis {
  font-size: 1.1rem;
  text-align: center;
  color: var(--deep-green-text);
}

.emphasis strong {
  color: var(--muted-gold);
}

/* Testimonial Box */
.testimonial-box {
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.05), rgba(218, 165, 32, 0.08));
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--muted-gold);
  margin: 1.5rem 0;
}

.testimonial-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-gold);
}

.testimonial-box p {
  text-align: center;
  color: #495057;
  margin: 0;
}

/* FAQ Image Container */
.faq-image-container {
  margin-top: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  max-height: 300px;
}

.faq-image-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.faq-support-image {
  width: 100%;
  height: 250px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.image-caption {
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.05), rgba(218, 165, 32, 0.08));
  padding: 0.75rem 1rem;
  margin: 0;
  font-size: 0.8rem;
  font-style: italic;
  color: #495057;
  text-align: center;
  border-top: 2px solid var(--muted-gold);
}

/* Equipment Info */
.equipment-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.info-card {
  background: white;
  padding: 1.5rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(30, 57, 47, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--muted-gold);
}

.info-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--muted-gold), var(--gold-accent));
  border-radius: 50%;
  color: var(--deep-green-text);
}

.info-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-green-text);
  margin-bottom: 0.75rem;
}

.info-card p {
  font-size: 0.85rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.4;
}

/* FAQ CTA Section */
.faq-cta-section {
  position: relative;
  margin-top: 3rem;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, #1e392f, #2a4a3f);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
}

.faq-cta-content {
  position: relative;
  z-index: 2;
}

.faq-cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}

.faq-cta-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(253, 253, 245, 0.9);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.faq-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-cta-primary,
.faq-cta-secondary {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.faq-cta-primary {
  background: linear-gradient(135deg, var(--muted-gold), var(--gold-accent));
  color: var(--deep-green-text);
  box-shadow: 0 4px 16px rgba(218, 165, 32, 0.3);
}

.faq-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(218, 165, 32, 0.4);
}

.faq-cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.faq-cta-secondary:hover {
  background: white;
  color: var(--deep-green-text);
  transform: translateY(-3px);
}

.faq-cta-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.1), transparent);
}

.decoration-circle:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
}

.decoration-circle:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .faq-hero {
    padding: 3rem 1.5rem 2rem;
    min-height: 35vh;
  }

  .faq-hero-title {
    font-size: 2.2rem;
  }

  .faq-container {
    padding: 0 1.5rem;
  }

  .faq-cta-section {
    padding: 2rem 1.5rem;
    margin-top: 2.5rem;
  }
}

@media (max-width: 768px) {
  .faq-hero {
    min-height: 35vh;
    padding: 3rem 1rem 2rem;
  }

  .faq-hero-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .faq-hero-subtitle {
    font-size: 0.95rem;
    padding-bottom: 0.75rem;
  }

  .faq-label {
    margin-bottom: 1.75rem;
  }

  .faq-container {
    padding: 0 1rem;
  }

  .faq-section {
    padding: 2rem 0;
  }

  .faq-question {
    padding: 1rem;
  }

  .question-text {
    font-size: 0.95rem;
    padding-right: 0.75rem;
  }

  .question-icon {
    width: 28px;
    height: 28px;
  }

  .answer-content {
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
  }

  .stats-showcase {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .environmental-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .environmental-benefits .env-benefit-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  .comparison-visual {
    flex-direction: row;
    gap: 0.75rem;
    flex-wrap: nowrap;
  }

  .visual-item {
    min-width: 120px;
    flex: 1;
  }

  .arrow-transform {
    transform: rotate(0deg);
    font-size: 1.25rem;
    flex-shrink: 0;
  }

  .faq-cta-section {
    padding: 1.5rem 1rem;
    margin-top: 2rem;
  }

  .faq-cta-title {
    font-size: 1.5rem;
  }

  .faq-cta-text {
    font-size: 0.9rem;
  }

  .faq-cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .faq-cta-primary,
  .faq-cta-secondary {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }

  .visual-icon {
    width: 44px;
    height: 44px;
  }

  .visual-item span {
    font-size: 0.85rem;
    text-align: center;
  }

  .env-icon {
    width: 40px;
    height: 40px;
  }

  .stat-box {
    padding: 0.75rem 0.5rem;
  }

  .stat-value {
    font-size: 1.1rem;
    color: #B8860B !important;
  }

  .stat-label {
    font-size: 0.75rem;
    color: #1e392f !important;
  }

  .stat-value {
    font-size: 1.25rem;
    color: #B8860B !important;
  }

  .stat-label {
    font-size: 0.8rem;
    color: #1e392f !important;
  }

  .equipment-info {
    gap: 0.75rem;
  }

  .info-card {
    padding: 1.25rem 0.875rem;
  }

  .info-card h4 {
    font-size: 0.95rem;
  }

  .info-card p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .faq-hero {
    min-height: 30vh;
    padding: 2.5rem 0.75rem 1.5rem;
  }

  .faq-hero-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .faq-hero-subtitle {
    font-size: 0.85rem;
    padding-bottom: 0.5rem;
  }

  .faq-label {
    margin-bottom: 1.25rem;
  }

  .faq-container {
    padding: 0 0.75rem;
  }

  .faq-question {
    padding: 0.875rem;
  }

  .question-text {
    font-size: 0.9rem;
  }

  .question-icon {
    width: 24px;
    height: 24px;
  }

  .answer-content {
    font-size: 0.85rem;
    padding: 0 0.875rem 0.875rem;
  }

  .faq-cta-title {
    font-size: 1.3rem;
  }

  .faq-cta-text {
    font-size: 0.85rem;
  }

  .stats-showcase {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem;
    margin: 1rem 0;
  }

  .stat-box {
    padding: 0.625rem 0.375rem;
  }

  .stat-value {
    font-size: 0.95rem;
    color: #B8860B !important;
  }

  .stat-label {
    font-size: 0.7rem;
    color: #1e392f !important;
  }

  .environmental-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .environmental-benefits .env-benefit-card:nth-child(n+3) {
    grid-column: span 1;
  }

  .environmental-benefits .env-benefit-card:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .environmental-benefits .env-benefit-card:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  .environmental-benefits .env-benefit-card:nth-child(5) {
    grid-column: 1 / -1;
    grid-row: 3;
    max-width: 50%;
    margin: 0 auto;
  }

  .visual-icon {
    width: 36px;
    height: 36px;
  }

  .env-icon {
    width: 36px;
    height: 36px;
  }

  .answer-highlight {
    padding: 0.75rem;
    margin: 0.75rem 0;
  }

  .combustion-comparison {
    padding: 0.875rem;
    margin: 1rem 0;
  }

  .comparison-visual {
    gap: 0.5rem;
  }

  .visual-item {
    min-width: 100px;
  }

  .visual-item span {
    font-size: 0.8rem;
  }

  .arrow-transform {
    font-size: 1rem;
  }

  .cta-box {
    padding: 1rem;
    margin: 1rem 0;
  }

  .download-section {
    padding: 1rem;
    margin: 1rem 0;
  }

  .download-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .download-icon {
    width: 40px;
    height: 40px;
  }

  .download-content h4 {
    font-size: 0.9rem;
  }

  .download-content p {
    font-size: 0.8rem;
  }

  .download-button {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .contact-info {
    flex-direction: row !important;
    gap: 0.6rem;
    padding: 0.6rem;
    flex-wrap: nowrap !important;
    justify-content: center;
  }

  .contact-item {
    gap: 0.375rem;
  }

  .contact-item svg {
    width: 16px;
    height: 16px;
  }

  .contact-item a {
    font-size: 0.85rem;
  }

  .contact-divider {
    font-size: 1rem;
  }

  .benefit-item {
    padding: 0.75rem;
  }
}

/* Additional Mobile Optimizations */
@media (max-width: 360px) {
  .faq-hero {
    min-height: 20vh;
    padding: 1.5rem 0.5rem 1rem;
  }

  .faq-hero-title {
    font-size: 1.3rem;
  }

  .faq-hero-subtitle {
    font-size: 0.8rem;
  }

  .faq-container {
    padding: 0 0.5rem;
  }

  .faq-question {
    padding: 0.75rem;
  }

  .question-text {
    font-size: 0.85rem;
  }

  .answer-content {
    font-size: 0.8rem;
    padding: 0 0.75rem 0.75rem;
  }

  .faq-cta-section {
    padding: 1.25rem 0.75rem;
  }

  .faq-cta-title {
    font-size: 1.2rem;
  }

  .faq-cta-text {
    font-size: 0.8rem;
  }

  .stats-showcase {
    gap: 0.2rem;
  }

  .stat-box {
    padding: 0.5rem 0.25rem;
  }

  .stat-value {
    font-size: 0.85rem;
    color: #B8860B !important;
  }

  .stat-label {
    font-size: 0.65rem;
    color: #1e392f !important;
  }

  .download-section {
    padding: 0.75rem;
    margin: 0.75rem 0;
  }

  .download-icon {
    width: 36px;
    height: 36px;
  }

  .download-content h4 {
    font-size: 0.85rem;
  }

  .download-content p {
    font-size: 0.75rem;
  }

  .download-button {
    padding: 0.5rem 0.875rem;
    font-size: 0.75rem;
  }

  .contact-info {
    flex-direction: row !important;
    gap: 0.4rem;
    padding: 0.5rem;
    font-size: 0.8rem;
    flex-wrap: nowrap !important;
    justify-content: center;
  }

  .contact-divider {
    font-size: 0.8rem;
    display: block !important;
  }

  .contact-item {
    justify-content: center;
    gap: 0.3rem;
    flex-shrink: 0;
  }

  .contact-item svg {
    width: 14px;
    height: 14px;
  }

  .contact-item a {
    font-size: 0.75rem;
    word-break: break-all;
  }

  .equipment-info {
    gap: 0.5rem;
  }

  .info-card {
    padding: 1rem 0.75rem;
  }

  .info-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .info-card p {
    font-size: 0.8rem;
  }

  .environmental-benefits {
    gap: 0.375rem;
  }

  .env-benefit-card {
    padding: 1rem 0.75rem;
  }

  .env-benefit-card h4 {
    font-size: 0.85rem;
  }

  .env-benefit-card p {
    font-size: 0.75rem;
  }
}

/* Ensure images are responsive */
.faq-support-image {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Optimize touch targets for mobile */
@media (max-width: 768px) {
  .faq-question {
    min-height: 60px;
  }

  .question-icon {
    min-width: 28px;
    min-height: 28px;
  }
}

/* Reduce spacing on very small screens */
@media (max-width: 320px) {
  .faq-grid {
    gap: 0.75rem;
  }

  .faq-item {
    border-radius: 8px;
  }

  .answer-highlight,
  .combustion-comparison,
  .cta-box {
    border-radius: 4px;
  }
}

/* Extra 
small screens - prevent horizontal scrolling */
@media (max-width: 320px) {
  .contact-info {
    gap: 0.25rem;
    padding: 0.4rem;
    font-size: 0.7rem;
  }

  .contact-item a {
    font-size: 0.65rem;
  }

  .contact-item svg {
    width: 12px;
    height: 12px;
  }

  .contact-divider {
    font-size: 0.7rem;
  }
}


@media (max-width: 768px) {
  .faq-image-container {
    max-height: 200px;
    margin-top: 1rem;
  }

  .faq-support-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .faq-image-container {
    max-height: 150px;
    margin-top: 0.75rem;
  }

  .faq-support-image {
    height: 130px;
  }
}

@media (max-width: 360px) {
  .faq-image-container {
    max-height: 120px;
  }

  .faq-support-image {
    height: 100px;
  }
}

/* Force horizontal contact layout on all devices */
@media (max-width: 768px) {
  .contact-info {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .contact-item {
    flex: 0 0 auto !important;
    min-width: 0 !important;
  }

  .contact-item a {
    font-size: 0.75rem !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 480px) {
  .contact-info {
    gap: 0.3rem !important;
    padding: 0.4rem !important;
  }

  .contact-item a {
    font-size: 0.7rem !important;
  }

  .contact-item svg {
    width: 12px !important;
    height: 12px !important;
  }

  .contact-divider {
    font-size: 0.7rem !important;
  }
}

@media (max-width: 360px) {
  .contact-info {
    gap: 0.2rem !important;
    padding: 0.3rem !important;
  }

  .contact-item a {
    font-size: 0.65rem !important;
  }

  .contact-item svg {
    width: 10px !important;
    height: 10px !important;
  }
}

/* Des
ktop contact info - force horizontal layout */
@media (min-width: 769px) {
  .contact-info {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 1.5rem !important;
  }

  .contact-item {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
  }

  .contact-divider {
    display: block !important;
    opacity: 0.6 !important;
  }
}

/* Responsive adjustments for hero */
@media (max-width: 768px) {
  .faq-hero {
    height: 40vh;
    min-height: 250px;
  }

  .hero-content {
    padding-top: 2rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .faq-hero {
    height: 35vh;
    min-height: 220px;
  }

  .hero-content {
    padding: 0 1rem;
    padding-top: 1rem;
  }

  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }
}