/* Additional styles for mobile menu */
@media (max-width: 768px) {
  .header-container {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 10px;
  }
  
  .logo {
    margin-bottom: 5px;
    padding-right: 50px; /* Make room for the menu button */
    width: 100%;
  }
  
  .logo h1 {
    font-size: 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .logo img {
    height: 40px;
  }
  
  #mainNav {
    display: none;
    width: 100%;
    padding-top: 10px;
  }
  
  #mainNav.active {
    display: block;
  }
  
  #mainNav ul {
    flex-direction: column;
  }
  
  #mainNav ul li {
    margin: 8px 0;
    margin-left: 0;
  }
  
  .mobile-menu-btn {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
    z-index: 100;
  }
  
  .mobile-menu-btn.active i:before {
    content: "\f00d";
  }
}

/* Enhance readability */
body {
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
}

.section-title {
  font-weight: 700;
  margin-bottom: 30px;
}

.feature-card h3 {
  font-weight: 600;
}

/* Enhance blue color visibility */
.hero {
  background-color: var(--primary-color);
  color: white;
}

.hero h2, .hero p {
  color: white;
}

.cta-button {
  background-color: white;
  color: var(--primary-color);
  font-weight: bold;
}

.cta-button:hover {
  background-color: #f0f0f0;
}

.section-title {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
  display: inline-block;
}

.feature-card i {
  color: var(--primary-color);
}

/* Schema.org structured data styles */
.schema-data {
  display: none;
}
