/* Base Styles */
body {
  font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
}

/* Custom Colors */
.bg-blue-50 { background-color: #f0f9ff; }
.bg-indigo-50 { background-color: #f0f4ff; }

/* Review Card Styles */
.review-card-image {
  height: 200px;
  object-fit: cover;
}

/* Header Styles */
.header-logo {
  font-family: 'Merriweather', serif;
  font-weight: bold;
}

/* Footer Styles */
.footer-links a {
  color: #4b5563;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #1d4ed8;
}

/* Utility Classes */
.text-link {
  color: #1d4ed8;
  text-decoration: underline;
}

.text-link:hover {
  color: #1e40af;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    max-width: 300px;
  }
}