* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Inter, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
  padding-bottom: 96px; /* Adjusted for larger sticky footer */
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.header {
  background: #fff;
  color: #333;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo {
  font-size: 1.5rem;
  color: #333;
  text-decoration: none;
  font-weight: 700;
}
.hamburger {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}
.nav-menu {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.nav-link {
  color: #900;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
.nav-link:hover, .nav-link:focus {
  color: #700;
}
.hero {
  text-align: center;
  padding: 30px 0;
  background: #f8f8f8;
}
h1, h2, h3, h4 {
  color: #900;
}
h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}
h2 {
  font-size: 1.8rem;
  margin: 20px 0 10px;
}
h3 {
  font-size: 1.4rem;
  margin: 10px 0;
}
.hero p {
  margin-bottom: 15px;
  font-size: 1rem;
}
.profiles, .reviews, .local-areas, .faq, .locations, .video-section {
  padding: 20px 0;
  background: #fff;
}
.profile-grid, .reviews-grid, .local-areas-grid, .locations-grid, .faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 10px;
}
.profile-card, .review-card, .local-area-item, .location-item, .faq-item {
  background: #f8f8f8;
  border-radius: 8px;
  text-align: center;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.profile-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  aspect-ratio: 2/3;
  object-fit: cover;
}
.video-section video {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin: 15px auto;
}
.video-section p {
  margin-top: 10px;
  font-style: italic;
  font-size: 0.9rem;
}
.buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}
.btn {
  padding: 9.6px 18px; /* 1.2x from 8px 15px */
  border-radius: 5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 1.08rem; /* 1.2x from 0.9rem */
  transition: background 0.3s;
}
.btn.call {
  background: #0052cc;
  color: #fff;
}
.btn.call:hover, .btn.call:focus {
  background: #003d99;
}
.btn.whatsapp {
  background: #25d366;
  color: #fff;
}
.btn.whatsapp:hover, .btn.whatsapp:focus {
  background: #1ebe57;
}
.hashtag-link, .content a, .footer a {
  color: #900;
  text-decoration: underline;
}
.hashtag-link:hover, .hashtag-link:focus, .content a:hover, .content a:focus, .footer a:hover, .footer a:focus {
  color: #700;
  text-decoration: none;
}
.local-area-item, .location-item {
  display: inline-block;
  background: #c00; /* Red background */
  color: #fff; /* White text */
  font-size: 1.17rem; /* 1.3x from 0.9rem (assumed from .breadcrumb) */
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}
.local-area-item:hover, .local-area-item:focus, .location-item:hover, .location-item:focus {
  background: #a00; /* Darker red on hover */
}
.content {
  padding: 20px 0;
}
.content p {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.7;
}
.content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}
.footer {
  background: #fff;
  color: #333;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #ddd;
  font-size: 1.2rem; /* 1.2x from assumed 1rem */
}
.footer p, .footer a {
  font-size: 1.2rem; /* 1.2x */
}
.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  padding: 12px 0; /* Adjusted for larger buttons */
  display: flex;
  justify-content: center;
  gap: 15px;
  z-index: 1000;
}
.sticky-footer .call {
  background: #c00;
  color: #fff;
  padding: 12px 24px; /* 1.2x from 10px 20px */
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.2rem; /* 1.2x from 1rem */
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.sticky-footer .call:hover, .sticky-footer .call:focus {
  background: #a00;
}
.sticky-footer .whatsapp {
  background: #25d366;
  color: #fff;
  padding: 12px 24px; /* 1.2x from 10px 20px */
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.2rem; /* 1.2x from 1rem */
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.sticky-footer .whatsapp:hover, .sticky-footer .whatsapp:focus {
  background: #1ebe57;
}
.reviews ul, .faq ul {
  list-style: none;
  padding: 0;
}
.reviews li, .faq li {
  margin-bottom: 15px;
  padding: 10px;
  background: #f8f8f8;
  border-radius: 8px;
}
.faq-grid li {
  background: none;
  padding: 0;
}
.star-rating {
  color: #0052cc;
  font-size: 0.9rem;
  margin: 8px 0;
}
.review-card h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.review-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}
@media (max-width: 400px) {
  .container {
    padding: 0 10px;
  }
  h1 {
    font-size: 1.6rem;
  }
  h2, h3 {
    font-size: 1.2rem;
  }
  .profile-grid, .reviews-grid, .local-areas-grid, .locations-grid, .faq-grid {
    grid-template-columns: 1fr;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    padding: 15px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  .nav-menu.active {
    display: flex;
  }
  .hamburger {
    display: block;
  }
  .btn, .sticky-footer .call, .sticky-footer .whatsapp {
    padding: 7.68px 14.4px; /* Scaled-down 1.2x */
    font-size: 0.864rem; /* Scaled-down 1.2x */
  }
  .footer, .footer p, .footer a {
    font-size: 0.96rem; /* Scaled-down 1.2x */
  }
  .local-area-item, .location-item {
    font-size: 0.936rem; /* Scaled-down 1.3x */
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
  h1 {
    font-size: 1.8rem;
  }
  h2, h3 {
    font-size: 1.3rem;
  }
  .profile-grid, .reviews-grid, .local-areas-grid, .locations-grid, .faq-grid {
    grid-template-columns: 1fr;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    padding: 15px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  .nav-menu.active {
    display: flex;
  }
  .hamburger {
    display: block;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .profile-grid, .reviews-grid, .local-areas-grid, .locations-grid, .faq-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  h1 {
    font-size: 2.2rem;
  }
  h2, h3 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1025px) {
  .profile-grid, .reviews-grid, .local-areas-grid, .locations-grid, .faq-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}