    /* Improved mobile navigation for dropdowns */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .section {
    padding: var(--space-12) 0;
  }
  
  /* COMPLETE OVERRIDE of mobile navigation - ensure no conflicts */
  /* Target all possible nav-links selectors to override style.css */
  .navbar .container > .nav-links,
  .navbar .nav-links,
  nav .nav-links,
  .nav-links {
    display: none !important;
    position: fixed !important;
    top: 72px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-color: var(--surface) !important;
    flex-direction: column !important;
    padding: 20px 24px !important;
    gap: 0 !important;
    box-shadow: var(--shadow-lg) !important;
    overflow-y: auto !important;
    z-index: 1002 !important; /* Increased to be above backdrop */
    transform: translateY(-100%) !important;
    opacity: 0 !important;
    transition: transform 0.3s ease, opacity 0.3s ease !important;
    margin: 0 !important;
    width: 100vw !important;
    height: calc(100vh - 72px) !important;
    min-height: calc(100vh - 72px) !important;
    max-height: calc(100vh - 72px) !important;
    /* Reset any conflicting properties from style.css */
    background-image: none !important;
    border: none !important;
  }

  .navbar .container > .nav-links.active,
  .navbar .nav-links.active,
  nav .nav-links.active,
  .nav-links.active {
    display: flex !important;
    transform: translateY(0) !important;
    opacity: 1 !important;
    /* Ensure it's visible */
    visibility: visible !important;
  }
  
  /* Complete override of style.css mobile navigation rules */
  /* Disable the original style.css mobile menu positioning */
  .nav-links {
    position: fixed !important;
    top: 72px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-color: var(--surface) !important;
    flex-direction: column !important;
    padding: 20px 24px !important;
    gap: 0 !important;
    box-shadow: var(--shadow-lg) !important;
    overflow-y: auto !important;
    z-index: 1002 !important;
    transform: translateY(-100%) !important;
    opacity: 0 !important;
    transition: transform 0.3s ease, opacity 0.3s ease !important;
    margin: 0 !important;
    width: 100vw !important;
    height: calc(100vh - 72px) !important;
    min-height: calc(100vh - 72px) !important;
    max-height: calc(100vh - 72px) !important;
    background-image: none !important;
    border: none !important;
  }
  
  /* Force display:none when not active (overrides style.css) */
  .nav-links:not(.active) {
    display: none !important;
  }
  
  /* Force display:flex when active (overrides style.css) */
  .nav-links.active {
    display: flex !important;
  }

  /* Mobile menu backdrop overlay */
  .mobile-menu-backdrop {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 997;
  }

  .mobile-menu-backdrop.active {
    display: block;
  }

  /* Improved hamburger animation */
  .nav-toggle {
    display: flex;
    z-index: 999;
    position: relative;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Improved mobile menu items */
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    width: 100%;
    font-size: 16px;
    color: var(--text-primary);
  }

  .nav-links a:hover {
    color: var(--professional-gold);
  }

  /* Mobile dropdown handling */
  .nav-links .dropdown-toggle::after {
    content: '';
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .nav-links .dropdown-toggle.active::after {
    transform: rotate(90deg);
  }

  .nav-links .dropdown {
    position: static;
    transform: none;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    min-width: auto;
    padding: 0;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: none;
  }

  .nav-links .dropdown.active {
    display: block;
    max-height: 500px;
    padding-left: 16px;
  }

  .dropdown a {
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .dropdown a:last-child {
    border-bottom: none;
  }

  .dropdown a:hover {
    background-color: transparent;
    color: var(--professional-gold);
  }

  /* Keep language switcher visible on mobile */
  .nav-actions .lang-switcher {
    display: flex;
  }

  .nav-actions .btn {
    display: none; /* Hide Get Quote button, shown in sticky CTA */
  }

  /* Mobile-specific enhancements */
  .nav-links a.active {
    color: var(--professional-gold);
    font-weight: 600;
  }

  .nav-links a.active::after {
    width: 4px;
    height: 4px;
    background-color: var(--professional-gold);
    border-radius: 50%;
    position: static;
    margin-left: 8px;
  }
  
  .hero {
    padding: var(--space-16) 0;
  }
  
  .hero h1 {
    font-size: 32px;
    text-align: center !important;
  }
  
  .hero p {
    font-size: 18px;
    text-align: center !important;
  }
  
  .hero .container {
    text-align: center !important;
  }
  
  .hero .btn {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 12px auto !important;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .process-step::after {
    display: none !important;
  }
  
  .stats-grid,
  .testimonials-grid,
  .pricing-grid,
  .industry-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .team-member {
    flex-direction: column;
    text-align: center;
  }
  
  .team-photo {
    margin: 0 auto;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  /* =========================================
     MOBILE TABLE RESPONSIVENESS
     Convert tables to card layout on mobile
     ========================================= */
  table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Alternative: Convert table to stacked cards */
  .mobile-table-cards {
    display: block;
  }
  
  .mobile-table-cards thead {
    display: none; /* Hide header on mobile */
  }
  
  .mobile-table-cards tbody {
    display: block;
  }
  
  .mobile-table-cards tr {
    display: block;
    background: var(--surface);
    border-radius: 12px;
    margin-bottom: 16px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
  }
  
  .mobile-table-cards td {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    text-align: right !important;
  }
  
  .mobile-table-cards td:last-child {
    border-bottom: none;
  }
  
  .mobile-table-cards td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--primary-navy);
    text-align: left;
  }
  
  /* =========================================
     MOBILE TEXT ALIGNMENT - ALL CENTERED
     ========================================= */
  
  /* ALL cards, boxes, and containers centered on mobile for app-like appearance */
  .card,
  .enhanced-card,
  .fact-box,
  .feature-box,
  .value-card,
  .testimonial,
  .pricing-card,
  .contact-item,
  .process-step,
  .entity-box,
  .comparison-card,
  .industry-item {
    text-align: center !important;
  }
  
  /* All content inside cards centered */
  .card *,
  .enhanced-card *,
  .fact-box *,
  .feature-box *,
  .value-card *,
  .testimonial *,
  .pricing-card *,
  .entity-box *,
  .comparison-card *,
  .industry-item * {
    text-align: center !important;
  }
  
  /* Card icons centered with proper spacing */
  .card-icon,
  .value-icon,
  .fact-icon,
  .feature-icon,
  .testimonial-avatar,
  .step-number,
  .industry-icon,
  .stat-number,
  .entity-icon,
  .pricing-card.featured::before {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  /* Process steps centered */
  .process-step {
    text-align: center;
  }
  
  .process-step h4,
  .process-step p {
    text-align: center;
  }
  
  /* Timeline items centered */
  .timeline-item {
    text-align: center;
  }
  
  /* Feature items centered */
  .feature-item {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
  
  /* Service cards centered */
  .service-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .service-icon {
    margin: 0 auto 16px auto;
  }
  
  .service-content {
    text-align: center;
  }
  
  .service-content h3,
  .service-content p {
    text-align: center;
  }
  
  /* Feature grid centered */
  .feature-grid {
    text-align: center;
  }
  
  .feature-box {
    text-align: center;
  }
  
  .feature-box h4,
  .feature-box p {
    text-align: center;
  }
  
  /* Fix for inline styled elements */
  div[style*="text-align: left"],
  div[style*="text-align:left"] {
    text-align: center !important;
  }
  
  /* Ensure all headings and paragraphs in cards are centered */
  .card h3,
  .card h4,
  .card p,
  .card li,
  .enhanced-card h3,
  .enhanced-card p,
  .fact-box h4,
  .fact-box p,
  .feature-box h4,
  .feature-box p,
  .value-card h4,
  .value-card p,
  .testimonial h3,
  .testimonial p,
  .pricing-card h3,
  .pricing-card p,
  .pricing-card li {
    text-align: center !important;
  }
  
  /* Keep section headers centered */
  .section-header,
  .section-header h2,
  .section-header p {
    text-align: center !important;
  }
  
  /* =========================================
     PAYMENT METHODS PAGE SPECIFIC FIXES
     ========================================= */
  
  /* Make steps stack properly on mobile */
  div[style*="display: flex"] {
    flex-direction: column !important;
    gap: 16px !important;
  }
  
  /* Number circles center on mobile */
  div[style*="border-radius: 50%"] {
    margin: 0 auto;
  }
  
  /* Grid layouts to single column */
  div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  
  /* Prevent overflow on mobile */
  .container {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  /* Table wrapper for horizontal scroll */
  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -16px;
    padding: 0 16px;
  }
  
  .table-wrapper table {
    min-width: 600px;
  }
}