@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@300;400;500;600;700&display=swap');

:root {
  /* Premium Color Palette */
  --primary: #0a2540;
  --primary-light: #1a4d7a;
  --primary-dark: #051a2e;
  --accent: #d4af37;
  --accent-light: #e8d08a;
  --accent-dark: #b8941f;
  --dark: #0f172a;
  --dark-light: #1e293b;
  --light: #f8fafc;
  --light-gray: #e2e8f0;
  --text-dark: #1e293b;
  --text-medium: #475569;
  --text-light: #f1f5f9;
  --white: #ffffff;
  --bg-blue: #f0f7ff;
  --bg-light: #fafbfc;
  --bg-gradient: linear-gradient(135deg, #0a2540 0%, #1a4d7a 50%, #0f172a 100%);
  --bg-gradient-accent: linear-gradient(135deg, #0a2540 0%, #1a4d7a 100%);
  
  /* Premium Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(10, 37, 64, 0.05);
  --shadow: 0 4px 6px -1px rgba(10, 37, 64, 0.1), 0 2px 4px -1px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(10, 37, 64, 0.1), 0 4px 6px -2px rgba(10, 37, 64, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(10, 37, 64, 0.1), 0 10px 10px -5px rgba(10, 37, 64, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(10, 37, 64, 0.25);
  --shadow-gold: 0 10px 30px -5px rgba(212, 175, 55, 0.3);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-chinese: 'Noto Sans SC', 'Microsoft YaHei', 'SimHei', sans-serif;
  --font-arabic: 'Noto Sans Arabic', 'Arial', sans-serif;
  --font-hindi: 'Noto Sans Devanagari', 'Arial', sans-serif;
}

/* Modern CSS reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.7;
  color: var(--text-dark);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Language-specific font support */
html[lang="zh-CN"] body,
html[lang="zh-CN"] h1,
html[lang="zh-CN"] h2,
html[lang="zh-CN"] h3,
html[lang="zh-CN"] p,
html[lang="zh-CN"] div,
html[lang="zh-CN"] span {
  font-family: var(--font-chinese), var(--font-primary);
}

html[lang="ar"] body,
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] p,
html[lang="ar"] div,
html[lang="ar"] span {
  font-family: var(--font-arabic), var(--font-primary);
}

html[lang="hi"] body,
html[lang="hi"] h1,
html[lang="hi"] h2,
html[lang="hi"] h3,
html[lang="hi"] p,
html[lang="hi"] div,
html[lang="hi"] span {
  font-family: var(--font-hindi), var(--font-primary);
}

/* Language-specific font support */
html[lang="zh-CN"] body,
html[lang="zh-CN"] {
  font-family: var(--font-chinese), var(--font-primary);
}

html[lang="ar"] body,
html[lang="ar"] {
  font-family: var(--font-arabic), var(--font-primary);
}

html[lang="hi"] body,
html[lang="hi"] {
  font-family: var(--font-hindi), var(--font-primary);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-light);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section styles */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-medium);
  font-weight: 400;
  line-height: 1.8;
}

/* Button styles */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: var(--bg-gradient-accent);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--bg-gradient-accent);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

/* Background colors */
.bg-blue {
  background: linear-gradient(135deg, var(--bg-blue) 0%, #e8f2ff 100%);
  position: relative;
}

.bg-blue::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.bg-light {
  background-color: var(--bg-light);
}

/* Nav styles */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo h1 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: -0.01em;
}

.logo-link {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo-link:hover {
  opacity: 0.9;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links li a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color: var(--accent-light);
}

.nav-links li a.active {
  color: var(--accent-light);
}

.nav-links li a.active::after {
  width: 100%;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* Hero section */
.hero {
  background: var(--bg-gradient);
  color: var(--text-light);
  padding: 50px 0 140px;
  position: relative;
  overflow: hidden;
}

.page-hero {
  background: var(--bg-gradient);
  color: var(--text-light);
  padding: 30px 0 120px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero-content {
  margin-top: 70px;
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-hero-content p {
  font-size: 1.1rem;
  color: rgba(241, 245, 249, 0.92);
  margin-bottom: 28px;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.18);
  color: var(--accent-light);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.hero-badge {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  padding: 16px;
}

.hero-badge-title {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-light);
}

.hero-badge-sub {
  display: block;
  font-size: 0.9rem;
  color: rgba(241, 245, 249, 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

.btn-secondary:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.impact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.impact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.impact-card p {
  color: var(--text-medium);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.brand-story h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.brand-story p {
  color: var(--text-medium);
  margin-bottom: 16px;
}

.brand-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--text-dark);
}

.brand-list li {
  display: flex;
  align-items: flex-start;
}

.brand-list li::before {
  content: '✓';
  color: var(--accent-dark);
  font-weight: 700;
  margin-right: 10px;
}

.brand-panel {
  background: var(--bg-light);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  font-weight: 600;
  color: var(--primary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.team-card {
  background: var(--white);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow);
}

.team-avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
}

.team-avatar svg {
  width: 100%;
  height: 100%;
}

.team-meta h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--primary);
}

.team-meta p {
  font-size: 0.95rem;
  color: var(--text-medium);
}

.about-cta {
  background: var(--bg-gradient-accent);
  color: var(--text-light);
}

.about-cta .cta-panel {
  text-align: center;
  padding: 10px 0;
}

.about-cta h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 12px;
  color: var(--text-light);
}

.about-cta p {
  color: rgba(241, 245, 249, 0.9);
  margin-bottom: 24px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.step-card {
  background: var(--white);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 18px;
  pointer-events: none;
}

.step-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.step-card p {
  color: var(--text-medium);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  margin-top: 80px;
  max-width: 650px;
  position: relative;
  z-index: 1;
}

.hero-content h2 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 36px;
  opacity: 0.95;
  font-weight: 400;
  line-height: 1.7;
}

/* About section */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.about-card {
  background: var(--white);
  padding: 36px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--bg-gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.about-card:hover::before {
  transform: scaleX(1);
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-light);
}

.about-card .icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.about-card:hover .icon {
  transform: scale(1.1);
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.about-card p {
  color: var(--text-medium);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Achievements section */
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid transparent;
  position: relative;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover::after {
  opacity: 1;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  background: var(--bg-gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-medium);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.875rem;
}

/* Testimonials section */
.testimonial-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 20px;
}

.testimonial-content {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--accent);
  position: relative;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent-light);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-content p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--text-dark);
  line-height: 1.8;
  position: relative;
  z-index: 1;
  padding-left: 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
  background: var(--bg-gradient-accent);
  color: white;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 20px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.testimonial-dot.active {
  background: var(--accent);
  width: 16px;
  border-radius: 8px;
}

/* Social section */
.social-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 30px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--light-gray);
}

.social-link:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-light);
}

.social-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.social-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

/* Contact form */
.contact-container {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.form-message {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 6px;
  font-weight: 500;
}

.form-message.success {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #10b981;
}

.form-message.error {
  background-color: #fee2e2;
  color: #b91c1c;
  border: 1px solid #ef4444;
}

/* Loading spinner */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--text-light);
  padding: 80px 0 30px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.01em;
}

.footer-logo-link {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 15px;
  transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
  opacity: 0.9;
}

.footer-logo-img {
  height: 45px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--text-light);
  opacity: 0.8;
}

.footer-links ul li a:hover {
  opacity: 1;
  color: var(--accent-light);
  padding-left: 5px;
  transition: all 0.3s ease;
}

.footer-contact p {
  margin-bottom: 10px;
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0.7;
}

/* Hidden field for spam protection */
.hidden-field {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

/* FAQ Section */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 24px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
  flex: 1;
  padding-right: 20px;
  line-height: 1.4;
}

.faq-toggle {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-light);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 2000px;
  padding: 0 30px 24px;
}

.faq-answer p {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 16px;
}

.faq-answer ul,
.faq-answer ol {
  margin: 16px 0;
  padding-left: 30px;
  color: var(--text-dark);
}

.faq-answer li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.faq-answer strong {
  color: var(--primary);
  font-weight: 600;
} 