.for-you-page {
  background: #fff;
  color: #273044;
  padding: 44px 0 64px;
}

.for-you-page h1,
.for-you-page h2 {
  font-family: "Inter Local", Arial, sans-serif;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  min-height: 98px;
  margin-bottom: 40px;
  padding: 20px 24px;
  background: #8c0000;
  color: #fff;
  text-align: center;
}

.contact-hero::after {
  position: absolute;
  right: 0;
  bottom: -36px;
  left: 0;
  height: 36px;
  background: #f7f7f7;
  content: "";
}

.contact-hero h1 {
  margin-bottom: 4px;
  color: #fff;
  font-size: 27px;
  line-height: 1.2;
}

.contact-hero p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.video-section, .shorts-section {
  padding: 0 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-section h2, .shorts-section h2 {
  margin-bottom: 20px;
  color: #1f1a1a;
  font-size: 29px;
  text-align: center;
}

/* Grid Styles for Videos */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.shorts-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.video-grid > div {
  background: #e9ecf2;
  border-radius: 8px;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shorts-grid > div {
  min-height: 380px; 
}

.back-home-section {
  text-align: center;
  padding: 20px 0 40px;
}

.back-home-btn {
  display: inline-block;
  background: #273044;
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s;
}

.back-home-btn:hover {
  background: #8c0000;
}

@media (max-width: 768px) {
  .for-you-page {
    padding-top: 26px;
  }
  .contact-hero {
    padding: 24px 18px 22px 20px;
    text-align: left;
  }
  .contact-hero h1 {
    font-size: 24px;
  }
  .contact-hero p {
    font-size: 14px;
  }
  .video-section h2, .shorts-section h2 {
    font-size: 24px;
  }
}