.elementor-807 .elementor-element.elementor-element-ef612f0{--display:flex;}/* Start custom CSS for html, class: .elementor-element-40c4ae0 *//* CVCraft FAQ Section Styles */
/* CSS Variables - Nigerian-inspired Professional Palette */
:root {
  /* Primary: Deep Forest Green (Growth, Trust) */
  --cvcraft-primary: #0d4f3c;
  --cvcraft-primary-foreground: #ffffff;
  --cvcraft-primary-light: #1a7a5e;
  --cvcraft-primary-lighter: #e8f5f0;
  
  /* Secondary: Warm Gold (Success, Achievement) */
  --cvcraft-secondary: #d4a843;
  --cvcraft-secondary-foreground: #ffffff;
  --cvcraft-secondary-light: #f4d483;
  --cvcraft-secondary-lighter: #fdf9ef;
  
  /* Neutrals - Fixed for proper light theme */
  --cvcraft-background: #ffffff;
  --cvcraft-foreground: #1a1a1a;
  --cvcraft-card: #ffffff;
  --cvcraft-card-foreground: #1a1a1a;
  --cvcraft-muted: #f8fafc;
  --cvcraft-muted-foreground: #64748b;
  --cvcraft-border: #e2e8f0;
  
  /* Typography */
  --cvcraft-font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --cvcraft-radius: 12px;
  
  /* Shadows */
  --cvcraft-shadow-professional: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --cvcraft-shadow-elevated: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

/* FAQ Section */
.cvcraft-faq-section {
  padding: 80px 0;
  background-color: #ffffff !important;
  font-family: var(--cvcraft-font-family);
  min-height: 100vh;
}

.cvcraft-container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Section Header */
.cvcraft-faq-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  animation: cvcraft-fade-in-up 0.8s ease-out forwards;
}

.cvcraft-section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--cvcraft-foreground);
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.cvcraft-section-description {
  font-size: 1.125rem;
  color: var(--cvcraft-muted-foreground);
  max-width: 32rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Styled highlight text to match the reference image */
.cvcraft-highlight-text {
  position: relative;
  font-style: italic;
  font-weight: 500;
  color: red;
  display: inline-block;
  padding-bottom: 4px;
}

.cvcraft-highlight-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: red;
  border-radius: 2px;
}

/* FAQ Accordion */
.cvcraft-faq-accordion {
  opacity: 0;
  transform: translateY(30px);
  animation: cvcraft-fade-in-up 0.8s ease-out 0.2s forwards;
}

.cvcraft-faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  overflow: hidden;
}

.cvcraft-faq-item:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}

.cvcraft-faq-trigger {
  width: 100%;
  padding: 24px;
  background: #ffffff;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--cvcraft-font-family);
  transition: all 0.3s ease;
  min-height: 70px;
}

.cvcraft-faq-trigger:hover {
  background: #f8fafc;
}

.cvcraft-faq-trigger:focus {
  outline: none;
}

.cvcraft-faq-question {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  padding-right: 16px;
  line-height: 1.5;
}

.cvcraft-faq-trigger:hover .cvcraft-faq-question {
  color: #1a1a1a;
}

.cvcraft-faq-icon {
  width: 24px;
  height: 24px;
  color: #64748b;
  transition: all 0.3s ease;
  flex-shrink: 0;
  stroke-width: 2px;
  opacity: 1;
  display: block;
}

/* Fallback arrow if Lucide doesn't load */
.cvcraft-faq-icon:not([data-lucide]):before {
  content: '▼';
  font-size: 14px;
  color: #64748b;
  display: block;
  text-align: center;
  line-height: 24px;
}

.cvcraft-faq-trigger:hover .cvcraft-faq-icon {
  color: #64748b;
}

.cvcraft-faq-trigger[aria-expanded="true"] .cvcraft-faq-icon {
  transform: rotate(180deg);
  color: #64748b;
}

.cvcraft-faq-trigger[aria-expanded="true"] {
  background: #ffffff;
}

.cvcraft-faq-trigger[aria-expanded="true"] .cvcraft-faq-question {
  color: #1a1a1a;
}

.cvcraft-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: #ffffff;
}

.cvcraft-faq-content.open {
  max-height: 600px;
  padding-bottom: 24px;
}

.cvcraft-faq-answer {
  padding: 0 24px;
  color: #64748b;
  line-height: 1.6;
  font-size: 15px;
}

/* Support Section */
.cvcraft-support-section {
  text-align: center;
  margin-top: 48px;
  opacity: 0;
  transform: translateY(30px);
  animation: cvcraft-fade-in-up 0.8s ease-out 0.4s forwards;
}

.cvcraft-support-text {
  color: #64748b;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.6;
}

.cvcraft-support-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  color: #1a1a1a;
  font-family: var(--cvcraft-font-family);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cvcraft-support-button:hover {
  background-color: #0d4f3c;
  color: #ffffff;
  border-color: #0d4f3c;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.cvcraft-button-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.cvcraft-support-button:hover .cvcraft-button-icon {
  transform: scale(1.1);
}

/* Animations */
@keyframes cvcraft-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .cvcraft-faq-section {
    padding: 60px 0;
  }
  
  .cvcraft-container {
    padding: 0 1rem;
  }
  
  .cvcraft-faq-header {
    margin-bottom: 3rem;
  }
  
  .cvcraft-section-title {
    font-size: 1.5rem;
  }
  
  .cvcraft-section-description {
    font-size: 1rem;
  }
  
  .cvcraft-faq-trigger {
    padding: 1.25rem;
  }
  
  .cvcraft-faq-question {
    font-size: 0.9rem;
    padding-right: 0.75rem;
  }
  
  .cvcraft-faq-answer {
    padding: 0 1.25rem;
    font-size: 0.9rem;
  }
  
  .cvcraft-faq-content.open {
    padding-bottom: 1.25rem;
  }
  
  .cvcraft-support-button {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .cvcraft-faq-section {
    padding: 40px 0;
  }
  
  .cvcraft-container {
    padding: 0 0.75rem;
  }
  
  .cvcraft-section-title {
    font-size: 1.25rem;
  }
  
  .cvcraft-faq-trigger {
    padding: 1rem;
  }
  
  .cvcraft-faq-question {
    font-size: 0.85rem;
  }
  
  .cvcraft-faq-answer {
    padding: 0 1rem;
    font-size: 0.85rem;
  }
  
  .cvcraft-faq-content.open {
    padding-bottom: 1rem;
  }
}/* End custom CSS */