/* FAQ PAGE SPECIFIC STYLES */
.faq-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 120px 20px 80px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.faq-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/background-pattern.png') repeat;
  opacity: 0.05;
}

.faq-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
  font-weight: 300;
}

.faq-content {
  padding: 60px 0;
  background-color: #f5f8fb;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blue-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.blue-frame {
  background-color: var(--primary-color);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 1000px;
  position: relative;
  overflow: hidden;
}

.blue-frame::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  pointer-events: none;
}

.blue-frame::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  pointer-events: none;
}

.faq-text-content {
  color: white;
  position: relative;
  z-index: 2;
}

.faq-text-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--accent-color);
  text-align: center;
}

.faq-text-content > p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: center;
}

.faq-container {
  margin-top: 30px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  font-size: 18px;
  margin: 0;
  color: var(--accent-color);
  flex: 1;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 20px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
  .faq-hero {
    padding: 100px 20px 60px;
  }
  
  .faq-hero h1 {
    font-size: 2rem;
  }
  
  .faq-hero p {
    font-size: 1rem;
  }
  
  .blue-frame {
    padding: 30px 20px;
  }
  
  .faq-text-content h2 {
    font-size: 24px;
  }
  
  .faq-question h3 {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .faq-hero h1 {
    font-size: 1.8rem;
  }
  
  .blue-container {
    padding: 0 15px;
  }
  
  .blue-frame {
    padding: 25px 15px;
    border-radius: 12px;
  }
  
  .blue-frame::before {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  
  .faq-text-content h2 {
    font-size: 22px;
  }
  
  .faq-question {
    padding: 15px;
  }
  
  .faq-question h3 {
    font-size: 15px;
  }
  
  .faq-answer p {
    font-size: 14px;
  }
}