<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Improved mobile header alignment for all landing pages */

@media (max-width: 768px) {
  /* Improve vertical alignment in header */
  .header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 8px 0;
  }
  
  /* Adjust logo sizing and spacing */
  .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  
  .logo h1, .logo h2 {
    margin: 0;
    line-height: 1.2;
    text-align: center;
  }
  
  /* Ensure hero content is properly aligned on mobile */
  .hero-content {
    padding: 40px 0;
  }
  
  .hero h1 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  
  .hero h2 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
  }
  
  /* Improve CTA buttons alignment */
  .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .cta-buttons a {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
}
</pre></body></html>