/* Enhanced and professional CSS styles applied across files */

/* Global Enhancements */
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--dl-color-theme-neutral-dark);
    background-color: var(--dl-color-theme-neutral-light);
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    line-height: 1.6;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'STIX Two Text', serif;
    font-weight: 600;
    margin-bottom: 0.75rem;
  }
  
  p, li, a, button {
    font-family: 'Noto Sans', sans-serif;
  }
  
  /* Navigation Enhancements */
  .navbar8-navbar-interactive {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    background-color: var(--dl-color-theme-neutral-light);
    backdrop-filter: blur(5px);
  }
  
  .navbar8-link11,
  .navbar8-link12,
  .navbar8-link31,
  .navbar8-link32,
  .navbar8-link4-dropdown-trigger,
  .navbar8-link5-menu-list a {
    color: var(--dl-color-theme-neutral-dark);
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .navbar8-link11:hover,
  .navbar8-link12:hover,
  .navbar8-link31:hover,
  .navbar8-link32:hover,
  .navbar8-link5-menu-list a:hover {
    color: var(--dl-color-theme-primary2);
  }
  
  /* Buttons Polished Look */
  .thq-button-filled,
  .thq-button-outline,
  .thq-button-flat {
    border-radius: 9999px;
    font-size: 15px;
    padding: 12px 24px;
    transition: all 0.3s ease-in-out;
  }
  
  /* Footer */
  footer.navbar8-container1 {
    background-color: var(--dl-color-theme-neutral-light);
    border-top: 1px solid #eee;
    font-size: 14px;
    color: var(--dl-color-theme-neutral-dark);
    padding: 24px 0;
  }
  
  /* Image Styling */
  img {
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
  }
  
  img:hover {
    transform: scale(1.02);
  }
  
  /* Card Styling */
  .thq-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }
  
  .thq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  }
  
  /* Section Padding */
  .thq-section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  /* Responsive Typography */
  @media (max-width: 768px) {
    h1 {
      font-size: 2rem;
    }
  
    h2 {
      font-size: 1.75rem;
    }
  
    .thq-section-padding {
      padding: 48px 16px;
    }
  }
  
  /* Focus states for accessibility */
  a:focus, button:focus, input:focus, textarea:focus {
    outline: 2px solid var(--dl-color-theme-primary2);
    outline-offset: 2px;
  }
  
  /* Animations */
  .fade-in {
    animation: fadeIn 0.6s ease-in-out forwards;
  }
  
  @keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  /* Utility classes */
  .text-center {
    text-align: center;
  }
  .mt-4 {
    margin-top: 1rem;
  }
  .mb-4 {
    margin-bottom: 1rem;
  }
  .p-4 {
    padding: 1rem;
  }
  .rounded-lg {
    border-radius: 1rem;
  }
  