.hearing-title-section {
  background-color: #000;
  padding: 4rem 2rem;
  width: 100%;
  margin-bottom: 0;
}

.hearing-hero-text-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.app-centering.tall {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 700px;
  margin: 0;
  padding: 0;
}

.app-centering.tall .image-18-tall {
  z-index: 0;
}

.hearing-hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 2rem;
}

.hearing-hero-headline {
  color: #fff;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 auto 1rem;
  padding: 0;
}

.hearing-hero-subtitle {
  color: #00c993;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 auto;
  padding: 0;
}

.hearing-hero-image {
  max-width: 600px;
  height: auto;
  display: block;
  border-radius: 15px;
}

@media (max-width: 1280px) {
    .hearing-hero-image {
      max-width: 500px;
    }
}
  
@media (max-width: 768px) {
  .hearing-title-section {
    padding: 2.5rem 1rem;
  }
  
  .hearing-hero-image-container {
    padding: 1rem;
  }
  
  .hearing-hero-image {
    max-width: 400px;
  }
  
  .hearing-hero-headline {
    font-size: 3rem;
    margin: 0 auto 0.75rem;
    padding: 0;
  }
  
  .hearing-hero-subtitle {
    font-size: 1.25rem;
    margin: 0 auto;
    padding: 0;
  }
}

@media (max-width: 500px) {
    .hearing-hero-image {
      max-width: 300px;
    }
}

/* About page product image */
.about-product-image {
  max-width: 300px !important;
  border-radius: 0 !important;
}

@media (max-width: 1280px) {
  .about-product-image {
    max-width: 250px !important;
  }
}

@media (max-width: 768px) {
  .about-product-image {
    max-width: 220px !important;
  }
}

@media (max-width: 500px) {
  .about-product-image {
    max-width: 200px !important;
  }
}

/* App Store buttons */
.hero-app-store-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2rem;
  background-color: #000;
  margin-top: 1.5rem;
}

.proof-app-store-button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-store-badge {
  height: 60px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.app-store-badge:hover {
  opacity: 0.8;
}

/* Compatible Hearing Aids button centering */
.div-block-31-copy {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media (max-width: 768px) {
  .app-store-badge {
    height: 50px;
  }
}

/* Index page App Store button - 2x larger */
.index-app-store-badge {
  height: 120px !important;
  width: auto !important;
}

@media (max-width: 768px) {
  .index-app-store-badge {
    height: 100px !important;
  }
}

/* Content sections - optimized for 50+ audience */
.content-section {
  margin-bottom: 5rem;
  margin-top: 0;
}

.content-section h3 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.content-section p {
  font-size: 1.4rem;
  line-height: 1.9;
  color: #e0e0e0;
  letter-spacing: 0.01em;
}

/* argument section two-column layout */
.argument-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
  margin-bottom: 5rem;
  margin-top: 0;
}

.argument-content {
  display: flex;
  flex-direction: column;
}

.argument-content h3 {
  display: block;
  visibility: visible;
  opacity: 1;
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.argument-content p {
  font-size: 1.4rem;
  line-height: 1.9;
  color: #e0e0e0;
  letter-spacing: 0.01em;
}

.argument-image {
  width: 100%;
  height: 100%;
  display: flex;
}

.argument-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

@media (max-width: 768px) {
  .content-section {
    margin-bottom: 4rem;
  }
  
  .content-section h3 {
    font-size: 1.9rem;
    margin-bottom: 1.25rem;
  }
  
  .content-section p {
    font-size: 1.25rem;
    line-height: 1.8;
  }
  
  .argument-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
  }
  
  .argument-content h3 {
    font-size: 1.9rem;
    margin-bottom: 1.25rem;
  }
  
  .argument-content p {
    font-size: 1.25rem;
    line-height: 1.8;
  }
  
  .argument-image {
    order: -1;
  }
}

