/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&display=swap');

/* Root Variables - Sabia Guía Colors */
:root {
  --primary-red: #e42b7b;
  --secondary-peach: #f086b7;
  --text-dark: #333;
  --text-medium: #4E4E4E;
  --light-gray: #EEEEED;
  --white: #fff;
}

/* Base Styles */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  box-sizing: border-box;
  overflow-x: hidden;
  font-size: 2.3vw;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: 0.75vw;
  }
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  background-color: var(--white);
  line-height: 1.6;
}

.container {
  max-width: 95%;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1200px) {
  .container {
    max-width: 95%;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-red);
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  font-size: 4.5rem;
  margin-bottom: 2rem;
}

h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 2rem;
  }
}

p {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-medium);
  font-size: 1.6rem;
  line-height: 1.5;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-red);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.red {
  color: var(--primary-red);
}

.red-bkgd {
  background-color: var(--primary-red) !important;
}

.grey-bkgd {
  background-color: var(--light-gray) !important;
}

/* Header */
header {
  background: var(--white);
  color: var(--text-dark);
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 95%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

header .logo {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-red);
  line-height: 1;
  flex-shrink: 0;
}

header .logo img {
  max-height: 50px;
  height: 50px;
  width: auto;
  display: block;
}

header .main-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: flex-end;
  margin: 0;
  padding: 0;
}

header nav a {
  color: var(--text-dark);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.4rem;
  padding: 0.5rem 1rem;
}

header nav a:hover {
  color: var(--primary-red);
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-radius: 5px;
  padding: 1rem 0;
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  color: var(--text-dark);
  text-transform: capitalize;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
  color: var(--primary-red);
}

/* Mobile Navigation Toggle Button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  header nav ul {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background-color: var(--white);
    width: 80%;
    height: 100vh;
    padding: 4rem 2rem;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
    z-index: 999;
    align-items: flex-start;
  }

  header nav ul.active {
    left: 0;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-peach) 100%);
  color: var(--white);
  padding: 8rem 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-logo {
  max-width: 300px;
  margin-bottom: 3rem;
}

.hero-tagline {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 2rem;
  font-weight: 700;
}

.hero-mission {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--primary-red);
  padding: 1.5rem 3rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.8rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--light-gray);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Cities Section */
.cities-section {
  padding: 6rem 0;
  background: var(--white);
}

.cities-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 3rem;
  color: var(--primary-red);
}

.cities-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  font-size: 1.6rem;
  color: var(--text-medium);
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.city-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.city-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.city-card img {
  width: 100%;
  /* height: 250px; */
  object-fit: cover;
  display: block;
}

.city-card h3 {
  padding: 2rem;
  font-size: 2rem;
  text-align: center;
  color: var(--primary-red);
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background: var(--light-gray);
}

.testimonials-section h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 3rem;
  color: var(--primary-red);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial {
  background: var(--white);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.testimonial img {
  width: 100px;
  margin-bottom: 2rem;
}

.testimonial p {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-medium);
  font-style: italic;
}

.testimonial .author {
  display: block;
  font-weight: bold;
  color: var(--primary-red);
  font-size: 1.4rem;
  text-align: right;
}

/* City Page */
.city-page {
  padding: 0;
}

.city-hero {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-peach) 100%);
  color: var(--white);
  padding: 6rem 0;
  text-align: center;
}

.city-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.city-logo {
  max-width: 200px;
  margin-bottom: 2rem;
}

.city-hero h1 {
  color: var(--white);
  font-size: 4rem;
  margin-bottom: 1rem;
}

.city-hero p {
  color: var(--white);
  font-size: 2rem;
}

.categories-section {
  padding: 6rem 2rem;
  background: var(--white);
}

.categories-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .categories-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.category-column {
  background: var(--light-gray);
  padding: 3rem 2rem;
  border-radius: 10px;
}

.category-title {
  color: var(--primary-red);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 3px solid var(--primary-red);
  padding-bottom: 1rem;
}

.subcategories-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.subcategory-link {
  display: block;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1.6rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.subcategory-link:hover {
  background: var(--primary-red);
  color: var(--white);
  transform: translateX(5px);
  box-shadow: 0 4px 10px rgba(238, 45, 48, 0.3);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-partners {
  padding: 6rem 2rem;
  background: var(--light-gray);
}

.featured-partners h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.featured-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  font-size: 1.6rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.partner-card:hover {
  transform: translateY(-5px);
}

.partner-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.partner-card h4 {
  padding: 1.5rem;
  font-size: 1.6rem;
  color: var(--primary-red);
}

.category-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.category-card h3 {
  padding: 2rem;
  text-align: center;
  font-size: 1.8rem;
  color: var(--primary-red);
}

/* Directory Page */
.directory-page {
  padding: 4rem 0;
}

.directory-header {
  text-align: center;
  margin-bottom: 4rem;
}

.directory-header h1 {
  margin-bottom: 2rem;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3rem;
}

.directory-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.directory-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.directory-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 2rem;
}

.card-title {
  margin-bottom: 1rem;
}

.card-title a {
  font-size: 2rem;
  color: var(--primary-red);
  font-weight: 700;
}

.card-excerpt {
  color: var(--text-medium);
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.read-more {
  display: inline-block;
  background: var(--primary-red);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.4rem;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.read-more:hover {
  background: #c41e25;
}

/* Business Page */
.business-page {
  padding: 0;
}

.business-header-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.business-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 4rem;
}

@media (max-width: 992px) {
  .business-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Main Content */
.business-main {
  min-width: 0;
}

.business-main h1 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  color: var(--primary-red);
}

.business-description {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--text-medium);
}

.business-description h2 {
  font-size: 2.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.business-description p {
  margin-bottom: 1.5rem;
}

/* Sidebar */
.business-sidebar {
  background: var(--light-gray);
  padding: 3rem;
  border-radius: 10px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.sidebar-logo {
  text-align: center;
  margin-bottom: 2rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
}

.sidebar-logo img {
  max-width: 100%;
  height: auto;
  max-height: 150px;
}

.sidebar-title {
  font-size: 2rem;
  color: var(--primary-red);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sidebar-info {
  border-top: 2px solid var(--primary-red);
  padding-top: 2rem;
}

.info-item {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  line-height: 1.6;
}

.info-item a {
  color: var(--text-dark);
  word-break: break-word;
}

.info-item a:hover {
  color: var(--primary-red);
}

.info-item.address a {
  display: block;
}

.sidebar-social {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-social a {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.sidebar-social a:hover {
  color: var(--primary-red);
}

@media (max-width: 992px) {
  .business-sidebar {
    position: relative;
    top: 0;
  }
  
  .business-main h1 {
    font-size: 2.8rem;
  }
}

/* Subcategory Page */
.subcategory-page {
  background: var(--white);
}

.subcategory-header {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-peach) 100%);
  padding: 6rem 2rem 4rem;
  text-align: center;
  color: var(--white);
}

.subcategory-header h1 {
  color: var(--white);
  font-size: 4rem;
  margin-bottom: 1rem;
}

.subcategory-intro {
  color: var(--white);
  font-size: 1.8rem;
  max-width: 800px;
  margin: 0 auto;
}

.business-list-section {
  padding: 6rem 2rem;
  background: var(--white);
}

.business-list {
  max-width: 1000px;
  margin: 0 auto;
}

.business-item {
  display: flex;
  gap: 3rem;
  margin-bottom: 5rem;
  padding-bottom: 4rem;
  border-bottom: 2px solid var(--light-gray);
}

.business-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.business-item-image {
  flex-shrink: 0;
  width: 350px;
  height: auto;
}

.business-item-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.business-item-image a:hover img {
  transform: scale(1.02);
}

.business-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.business-item-content h3 {
  margin-bottom: 2rem;
}

.business-item-content h3 a {
  color: var(--primary-red);
  text-decoration: none;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.business-item-content h3 a:hover {
  color: var(--secondary-peach);
}

.business-item-excerpt {
  color: var(--text-medium);
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  flex: 1;
}

.read-more-link {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.5rem;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.read-more-link:hover {
  color: var(--secondary-peach);
}

@media (max-width: 768px) {
  .subcategory-header h1 {
    font-size: 3rem;
  }
  
  .business-item {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
  }
  
  .business-item-image {
    width: 100%;
  }
}

/* Category Page */
.category-page {
  padding: 6rem 0;
  background: var(--white);
  min-height: 60vh;
}

.category-header {
  text-align: center;
  margin-bottom: 5rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid var(--light-gray);
}

.category-header h1 {
  color: var(--primary-red);
  font-size: 4.5rem;
  margin-bottom: 2rem;
}

.category-intro {
  max-width: 800px;
  margin: 0 auto;
}

.category-intro h1 {
  color: var(--primary-red);
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.category-intro p {
  color: var(--text-medium);
  font-size: 1.8rem;
  line-height: 1.8;
}

.subcategories-section h2 {
  color: var(--primary-red);
  font-size: 3rem;
  margin-bottom: 3rem;
  text-align: center;
}

.subcategories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.subcategory-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  border: 2px solid var(--light-gray);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 150px;
}

.subcategory-card:hover {
  border-color: var(--primary-red);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(238, 45, 48, 0.15);
}

.subcategory-card h3 {
  color: var(--primary-red);
  font-size: 2rem;
  margin-bottom: 1rem;
  text-transform: capitalize;
}

.subcategory-card p {
  color: var(--text-medium);
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  .category-header h1 {
    font-size: 3.5rem;
  }
  
  .subcategories-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
  }
}

/* Footer */
.site-footer {
  background: #333333;
  color: var(--white);
  padding: 5rem 0 2rem;
  margin-top: 6rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h6 {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  text-transform: uppercase;
  border-bottom: 2px solid var(--primary-red);
  padding-bottom: 0.8rem;
}

.footer-section p {
  color: #BBBBBB;
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.footer-section a {
  color: #BBBBBB;
  text-decoration: none;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-red);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 1rem;
}

.social-links {
  margin-top: 1.5rem;
  font-size: 1.4rem;
}

.social-links a {
  color: #BBBBBB;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-red);
}

.footer-bottom {
  text-align: center;
  padding: 2rem 2rem 1rem;
  border-top: 1px solid #555555;
  color: #999999;
  font-size: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom a {
  color: #999999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--primary-red);
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .site-footer {
    padding: 3rem 0 1.5rem;
  }
}

/* Content Pages */
.content-page {
  padding: 6rem 0;
  background: var(--white);
  min-height: 60vh;
}

.page-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
}

.page-content h1 {
  color: var(--primary-red);
  font-size: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 3px solid var(--primary-red);
}

.page-content h2 {
  color: var(--primary-red);
  font-size: 2.8rem;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.page-content h3 {
  color: var(--text-dark);
  font-size: 2.2rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.content-body p {
  color: var(--text-medium);
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-body ul,
.content-body ol {
  margin-bottom: 2rem;
  margin-left: 2rem;
}

.content-body li {
  color: var(--text-medium);
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-body a {
  color: var(--primary-red);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.content-body a:hover {
  color: var(--secondary-peach);
}

.content-body strong {
  color: var(--text-dark);
  font-weight: 700;
}

@media (max-width: 768px) {
  .content-page {
    padding: 4rem 0;
  }
  
  .page-content h1 {
    font-size: 3rem;
  }
  
  .page-content h2 {
    font-size: 2.4rem;
  }
  
  .page-content h3 {
    font-size: 2rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .cities-grid,
  .testimonials-grid,
  .directory-grid {
    grid-template-columns: 1fr;
  }

  .hero-tagline {
    font-size: 3rem;
  }

  .hero-mission {
    font-size: 1.6rem;
  }

  .business-header {
    height: 250px;
  }

  .business-info {
    padding: 2rem 1.5rem;
  }
}
