@import url('styles.css');


/* About Hero Section */
.about-hero {
  text-align: center;
  padding: 2rem 0;  
}

.about-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.about-hero p {
  font-size: 1.3rem;
  color: #555;
  margin-top: 1.5rem;
}

/* FAQ Section Styles */
.faq-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Tips Container Styles */
.tips-container {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.tips-container h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: #00b4b0;
  margin-bottom: 1.5rem;
  text-align: center;
}

.tip-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid rgb(98, 230, 175);
  transition: all 0.3s ease;
}

.tip-card:last-child {
  margin-bottom: 0;
}

.tip-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.tip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #57bd9e 0%, rgb(98, 230, 175) 100%);
  border-radius: 10px;
  margin-bottom: 1rem;
}

.tip-icon i {
  font-size: 1.2rem;
  color: white;
}

.tip-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 0.5rem 0;
}

.tip-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4b5563;
  margin: 0;
}

.tip-card p strong {
  color: #1f2937;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px rgba(98, 230, 175);
  border: 1px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(98, 230, 175);
  transform: translateY(-2px);
}

.faq-item.active {
  box-shadow: 0 8px 25px rgba(98, 230, 175);
  border-color: #3b82f6;
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-item.active .faq-question {
  background: linear-gradient(135deg, #00b4b0 0%, #00b4b0 100%);
  color: white;
}

.faq-question h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  color: #1f2937;
  flex: 1;
  padding-right: 1rem;
}

.faq-item.active .faq-question h3 {
  color: white;
}

.faq-icon {
  font-size: 1rem;
  color: #6b7280;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
}

.faq-answer p {
  padding: 0 2rem 1.5rem 2rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease 0.1s;
}

.faq-item.active .faq-answer p {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styling */
@media (max-width: 1024px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .tips-container {
    position: static;
    order: -1;
  }
}

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.4rem;
  }
  
  .faq-section {
    padding: 3rem 0;
  }
  
  .faq-layout {
    padding: 0 1rem;
    gap: 1.5rem;
  }
  
  .tips-container {
    padding: 1.5rem;
  }
  
  .tips-container h2 {
    font-size: 1.3rem;
  }
  
  .tip-card {
    padding: 1.25rem;
  }
  
  .faq-question {
    padding: 1.25rem 1.5rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
    padding-right: 0.75rem;
  }
  
  .faq-answer p {
    padding: 0 1.5rem 1.25rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 2rem;
  }
  
  .about-hero p {
    font-size: 1.1rem;
  }
  
  .faq-section {
    padding: 2rem 0;
  }
  
  .tips-container {
    padding: 1rem;
  }
  
  .tips-container h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .tip-card {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .tip-card p {
    font-size: 0.85rem;
  }
  
  .faq-question {
    padding: 1rem 1.25rem;
  }
  
  .faq-question h3 {
    font-size: 0.95rem;
    line-height: 1.3;
  }
  
  .faq-answer p {
    padding: 0 1.25rem 1rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .faq-icon {
    font-size: 0.9rem;
  }
}

/* Smooth scrolling for better UX */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
.faq-question:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.faq-question:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}