/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f8fafc;
  color: #1e293b;
  line-height: 1.6;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
  background-color: #f1f5f9;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.875rem;
}

/* Layout Styles */
.layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.layout-header {
  background: linear-gradient(135deg, #213d77 0%, #1a2f5f 100%);
  color: white;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
}

.logo a {
  text-decoration: none;
  color: inherit;
}

.logo h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.logo p {
  margin: 2px 0 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
  color: white;
  background: rgba(255, 255, 255, 0.2);
}

/* Main Content */
.layout-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Footer */
.layout-footer {
  background: #2d3748;
  color: white;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 20px 24px;
}

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

.footer-section h3 {
  color: white;
  margin: 0 0 16px 0;
  font-size: 20px;
  font-weight: 600;
}

.footer-section h4 {
  color: white;
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 600;
}

.footer-section p {
  color: #a0aec0;
  margin: 0;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #4a5568;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #a0aec0;
  font-size: 14px;
}

/* Landing Page Styles */
.landing-page {
  min-height: calc(100vh - 140px);
  background: linear-gradient(135deg, #213d77 0%, #1a2f5f 100%);
}

.landing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero Section */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-content h2 {
  color: white;
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin: 0 0 40px 0;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 300px;
}

.download-btn {
  width: 350px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: #28a745;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  margin-bottom: 8px;
}

.download-btn:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
  color: white;
  text-decoration: none;
}

.download-btn.primary {
  background: linear-gradient(135deg, #93aad9 0%, #1a2f5f 100%);
}

.cta-subtitle {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

/* Free Trial Section */
.free-trial-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 60px 0;
  margin: 40px 0;
}

.trial-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.trial-content h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.trial-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.trial-features {
  margin-bottom: 30px;
}

.trial-feature {
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.trial-btn {
  background: white;
  color: #667eea;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
}

.trial-btn:hover {
  transform: translateY(-2px);
}

.credit-badge {
  background: rgba(255, 255, 255, 0.2);
  border: 3px solid white;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.credit-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.credit-text {
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

/* Pricing Section */
.pricing-section {
  background: #f8fafc;
  padding: 80px 0;
  text-align: center;
}

.pricing-section h3 {
  color: #1f2937;
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 60px 0;
}

.pricing-subtitle {
  text-align: center;
  color: #6b7280;
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
  border-color: #3b82f6;
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #3b82f6;
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-card h4 {
  color: #1f2937;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 16px 0;
}

.price {
  color: #3b82f6;
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.credits {
  color: #6b7280;
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 16px 0;
}

.price-per-credit {
  color: #10b981;
  font-size: 14px;
  font-weight: 500;
  margin: 8px 0;
}

.pricing-card p {
  color: #6b7280;
  font-size: 14px;
  margin: 0 0 30px 0;
}

.price-btn {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #213d77 0%, #1a2f5f 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(33, 61, 119, 0.3);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.price-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 61, 119, 0.4);
  color: white;
  text-decoration: none;
}

/* Features Section */
.features-section {
  background: white;
  padding: 80px 0;
  text-align: center;
}

.features-section h3 {
  color: #1f2937;
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 60px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-card h4 {
  color: #1f2937;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.feature-card p {
  color: #6b7280;
  font-size: 16px;
  margin: 0;
  line-height: 1.6;
}

/* How it Works Section */
.how-it-works-section {
  padding: 80px 0;
  background: white;
}

.how-it-works-section h3 {
  text-align: center;
  color: #1f2937;
  font-size: 36px;
  margin-bottom: 60px;
  font-weight: 700;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: 30px 20px;
  background: #f8fafc;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #213d77 0%, #1a2f5f 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px auto;
}

.step h4 {
  color: #1f2937;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.step p {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.5;
}

/* Purchase Page Styles */
.purchase-page {
  min-height: calc(100vh - 140px);
  background: #f8fafc;
  padding: 40px 0;
}

.purchase-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.purchase-header {
  text-align: center;
  margin-bottom: 40px;
}

.purchase-header h1 {
  color: #1f2937;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.purchase-header p {
  color: #6b7280;
  font-size: 18px;
}

.purchase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.package-summary-card,
.user-form-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.package-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.package-header h2 {
  color: #1f2937;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.package-details {
  margin-bottom: 24px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-item.total {
  font-weight: 600;
  font-size: 18px;
  color: #1f2937;
}

.detail-item .label {
  color: #6b7280;
}

.detail-item .value {
  color: #1f2937;
  font-weight: 500;
}

.package-benefits h3 {
  color: #1f2937;
  font-size: 18px;
  margin-bottom: 16px;
}

.package-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-benefits li {
  color: #6b7280;
  margin-bottom: 8px;
  padding-left: 0;
}

.user-form-card h2 {
  color: #1f2937;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  color: #374151;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group small {
  color: #6b7280;
  font-size: 14px;
  margin-top: 4px;
  display: block;
}

.payment-info {
  margin: 24px 0;
}

.security-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  background: #f3f4f6;
  color: #374151;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.pay-button {
  width: 100%;
  background: linear-gradient(135deg, #213d77 0%, #1a2f5f 100%);
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

.pay-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 61, 119, 0.4);
}

.pay-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.terms-notice {
  text-align: center;
  font-size: 14px;
  color: #6b7280;
}

.terms-notice a {
  color: #3b82f6;
  text-decoration: none;
}

.terms-notice a:hover {
  text-decoration: underline;
}

.trust-section {
  text-align: center;
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.trust-section h3 {
  color: #1f2937;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
}

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

.indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.indicator .icon {
  font-size: 24px;
}

.indicator .text strong {
  color: #1f2937;
  font-weight: 600;
  display: block;
}

.indicator .text p {
  color: #6b7280;
  font-size: 14px;
  margin: 4px 0 0 0;
}

.error-message {
  background-color: #fef2f2;
  color: #dc2626;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #fecaca;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    padding: 0 16px;
    flex-direction: column;
    gap: 16px;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 60px 0;
  }

  .hero-content h2 {
    font-size: 36px;
  }

  .trial-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .purchase-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trust-indicators {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: none;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .landing-container,
  .purchase-container {
    padding: 0 16px;
  }

  .hero-content h2 {
    font-size: 28px;
  }

  .cta-buttons {
    max-width: 100%;
  }

  .download-btn {
    width: 100%;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .package-summary-card,
  .user-form-card {
    padding: 24px;
  }
}


.static-page {
  min-height: calc(100vh - 140px);
  background: #f8fafc;
  padding: 40px 0;
}

.static-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.static-header {
  text-align: center;
  margin-bottom: 40px;
}

.static-header h1 {
  color: #1f2937;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.static-header .subtitle,
.static-header .last-updated {
  color: #6b7280;
  font-size: 16px;
  margin: 0;
}

.static-content {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.static-content section {
  margin-bottom: 32px;
}

.static-content section:last-child {
  margin-bottom: 0;
}

.static-content h2 {
  color: #1f2937;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e5e7eb;
}

.static-content h3 {
  color: #1f2937;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.static-content p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px;
}

.static-content ul,
.static-content ol {
  color: #6b7280;
  padding-left: 20px;
  margin-bottom: 16px;
}

.static-content li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.static-content a {
  color: #3b82f6;
  text-decoration: none;
}

.static-content a:hover {
  text-decoration: underline;
}

.contact-info {
  background: #f8fafc;
  border-radius: 8px;
  padding: 20px;
  margin-top: 16px;
}

/* Refund Policy Specific Styles */
.policy-section {
  margin-bottom: 32px;
}

.important-notice {
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 8px;
  padding: 16px;
  margin: 16px 0;
}

.important-notice h3 {
  color: #92400e;
  margin-bottom: 8px;
}

.important-notice p {
  color: #92400e;
  margin: 0;
}

.compliance-info {
  background: #f0f9ff;
  border: 1px solid #0ea5e9;
  border-radius: 8px;
  padding: 16px;
  margin: 16px 0;
}

.cta-section {
  background: #f8fafc;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  margin-top: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 24px 0;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-primary {
  background: #213d77;
  color: white;
}

.btn-primary:hover {
  background: #1a2f5f;
  transform: translateY(-1px);
  color: white;
  text-decoration: none;
}

.btn-secondary {
  background: #6b7280;
  color: white;
}

.btn-secondary:hover {
  background: #4b5563;
  transform: translateY(-1px);
  color: white;
  text-decoration: none;
}

.policy-acknowledgment {
  margin-top: 24px;
  font-style: italic;
  color: #6b7280;
}

/* Support Page Specific Styles */
.support-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  background: white;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.tab-btn {
  flex: 1;
  padding: 16px 24px;
  background: #f3f4f6;
  color: #6b7280;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn.active {
  background: white;
  color: #1f2937;
}

.tab-btn:hover {
  background: #e5e7eb;
}

.tab-btn.active:hover {
  background: white;
}

.support-tabs + .static-content {
  border-radius: 0 0 16px 16px;
  margin-top: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  padding: 24px;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

.faq-item h3 {
  color: #1f2937;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.faq-item p {
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.contact-method {
  background: #f8fafc;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.contact-method h3 {
  color: #1f2937;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-method p {
  color: #6b7280;
  margin-bottom: 12px;
}

.contact-method a {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
}

.contact-method a:hover {
  text-decoration: underline;
}

.contact-form-container {
  background: #f8fafc;
  border-radius: 12px;
  padding: 32px;
}

.contact-form-container h3 {
  color: #1f2937;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  color: #374151;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.submit-btn {
  width: 100%;
  background: #213d77;
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.submit-btn:hover {
  background: #1a2f5f;
  transform: translateY(-1px);
}

.form-success {
  text-align: center;
  padding: 40px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
}

.form-success h4 {
  color: #16a34a;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.form-success p {
  color: #16a34a;
  margin: 0;
}

@media (max-width: 768px) {
  .static-container {
    padding: 0 16px;
  }
  
  .static-content {
    padding: 24px;
  }
  
  .static-header h1 {
    font-size: 28px;
  }
  
  .static-content h2 {
    font-size: 20px;
  }
  
  .support-tabs {
    flex-direction: column;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 200px;
    text-align: center;
  }
}