/* CSS Variables for theming */
:root {
  --background: #000000;
  --foreground: #ffffff;
  --secondary: #404040;
  --primary: #D52B1E;
  --text-muted: #a3a3a3;
  --border: #333333;
  --hero-bg: rgb(29, 28, 28);
  --footer-bg: #000000;
  --footer-border: #333333;
  --primary-hover: #b91c1c;
}

[data-theme="light"] {
  --background: #ffffff;
  --foreground: #000000;
  --secondary: #f5f5f5;
  --primary: #D52B1E;
  --text-muted: #666666;
  --border: #e5e5e5;
  --hero-bg: #f8f8f8;
  --footer-bg: #f5f5f5;
  --footer-border: #e5e5e5;
  --primary-hover: #b91c1c;
}

/* Navbar Styles - Ensure fixed positioning */
.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: var(--background) !important;
  border-bottom: 1px solid var(--border) !important;
  z-index: 1000 !important;
  transition: background-color 0.3s ease !important;
}

.secondary-navbar {
  position: fixed !important;
  top: 80px !important;
  left: 0 !important;
  right: 0 !important;
  background: var(--secondary) !important;
  border-bottom: 1px solid var(--border) !important;
  z-index: 999 !important;
  transition: background-color 0.3s ease !important;
}

/* Main Layout */
.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
  width: 100%;
  background: var(--background);
  color: var(--foreground);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* .support-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem 1rem;
  background: var(--card-bg);
} */

/* Support Hero Section */
.support-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
  width: 100%;
  background: var(--hero-bg);
  padding: 4rem 2rem;
  padding-top: 0;
  margin-top: 0;
  padding-top: 4rem;
  transition: background-color 0.3s ease;
}

.support-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.support-title {
  font-size: 3.5rem;
  font-weight: 300;
  margin: 0 0 1.5rem 0;
  padding-top: 2rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.support-highlight {
  color: var(--primary);
  font-weight: 600;
}

.support-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-weight: 300;
  transition: color 0.3s ease;
}

.support-icon {
  padding-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.support-icon img {
  filter: brightness(0) saturate(100%) invert(100%);
  transition: filter 0.3s ease;
}

[data-theme="light"] .support-icon img {
  filter: brightness(0) saturate(100%) invert(0%);
}

/* Service Commitments Section */
.services-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--hero-bg);
  color: var(--hero-bg);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.commitments-section {
  width: 100%;
  padding: 4rem 2rem;
  background: var(--background);
  border-top: 1px solid var(--border);
}

.commitments-content {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--hero-bg);
}

.commitments-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  color: var(--foreground);
  margin-bottom: 3rem;
  transition: color 0.3s ease;
}

.commitments-section .commitments-grid {
  display: flex !important;
  gap: 2rem;
  justify-content: center;
  margin: 3rem 0;
  flex-wrap: wrap;
  padding: 3rem !important;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: background-color 0.3s ease;
  background-color: #1a1a1a !important;
}
/* 
html[data-theme="light"] .commitments-section .commitments-grid {
  background-color: #e0e0e0 !important;
} */

.commitment-card {
  background: var(--hero-bg);
  border-radius: 16px;
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.12);
}

.commitment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.commitment-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

commitment-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}
/* 
[data-theme="light"] .commitment-card h3 {
  color: var(--foreground);
} */

.commitment-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

/* [data-theme="light"] .commitment-card p {
  color: var(--text-muted);
} */

/* Footer */
.footer {
  padding: 2rem;
  text-align: center;
  background: var(--footer-bg);
  border-top: 1px solid var(--footer-border);
  margin-top: 4rem;
}

.footer p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .support-hero {
    padding: 3rem 1.5rem;
    margin-top: 0 !important; /* Ensure no margin above hero on tablet */
  }
  
  .support-title {
    font-size: 3rem;
  }
  
  .support-highlight {
    font-size: 3.1rem;
  }
  
  .commitments-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .support-hero {
    padding: 2rem 1rem;
    margin-top: 0 !important; /* Ensure no margin above hero on mobile */
  }
  
  .support-title {
    font-size: 2.5rem;
  }
  
  .support-highlight {
    font-size: 2.6rem;
  }
  
  .support-description {
    font-size: 1.1rem;
  }
  
  .commitments-section {
    padding: 3rem 1rem;
  }
  
  .commitments-title {
    font-size: 2rem;
  }
  
  .commitments-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .commitment-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .support-hero {
    padding: 1.5rem 1rem;
    margin-top: 0 !important; /* Ensure no margin above hero on small screens */
  }
  
  .support-title {
    font-size: 2rem;
  }
  
  .support-highlight {
    font-size: 2.1rem;
  }
  
  .commitment-card {
    padding: 1rem;
  }
  
  .commitment-card h3 {
    font-size: 1.25rem;
  }
} 

.services-section {
  text-align: center;
  margin: 3rem 0 2rem 0;
}

.services-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--foreground);
}

.services-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.service-card {
  background: var(--hero-bg);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  width: 340px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
  border: 1px solid var(--border);
}

.service-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.service-card .service-icon {
  background: var(--primary) !important;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.service-card .service-icon svg {
  display: block;
  width: 48px;
  height: 48px;
  color: white;
}

.service-card .service-icon img {
  width: 48px;
  height: 48px;
  filter: brightness(0) saturate(100%) invert(100%);
}

.service-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: var(--foreground);
}

.service-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0;
} 

/* --- Issues Section --- */
.issues-section {
  margin: 3rem 0 2rem 0;
  text-align: center;
}
.issues-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--foreground);
}
.issues-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.issue-card {
  background: var(--hero-bg);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  width: 340px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}
.issue-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.issue-icon {
  background: var(--primary);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.issue-icon svg {
  width: 36px;
  height: 36px;
  color: white;
}
.issue-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: var(--foreground);
}
.issue-card ol {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0 0 1rem 1.2rem;
  padding: 0;
  text-align: left;
}
.issue-btn {
  background: var(--background);
  color: var(--foreground);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.issue-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* --- FAQ Section --- */
.faq-section {
  margin: 3rem 0 2rem 0;
  text-align: center;
}
.faq-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--foreground);
}
.faq-group {
  max-width: 800px;
  margin: 0 auto 2rem auto;
  text-align: left;
}
.faq-item {
  background: var(--hero-bg);
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1.2rem 1.5rem;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: background 0.2s;
}
.faq-question:hover {
  background: var(--border);
}
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.2rem 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
}
.faq-item.open .faq-answer {
  display: block;
}

/* --- Help Section --- */
.help-section {
  margin: 3rem 0 2rem 0;
  text-align: center;
}
.help-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}
.help-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.help-card {
  background: var(--hero-bg);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  width: 320px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.help-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}
.help-icon {
  background: var(--primary);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.help-icon svg {
  width: 36px;
  height: 36px;
  color: white;
}
.help-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: var(--foreground);
}
.help-card p {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0 0 1rem 0;
}
.help-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.help-btn:hover {
  background: var(--primary-hover);
}

/* --- Responsive --- */
@media (max-width: 1100px) {
  .services-cards, .issues-cards, .help-cards {
    flex-direction: column;
    align-items: center;
  }
} 

.support-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem 1rem;
} 