/* Global Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ================================
   Advertise Hero Section
================================ */
.advertise-hero {
  position: relative;
  width: 100%;
  height: 75vh;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url('../images/advertise_bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.advertise-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.advertise-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #fff;
}

.hero-main-text {
  font-size: 3.5rem;
  text-transform: uppercase;
}

.hero-main-text .highlight-text {
  color: #00A650;
}

.hero-tagline {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ccc;
}

/* ================================
   Why Advertise Section
================================ */
.why-advertise {
  background-color: #1a1a1a;
  padding: 4rem 2rem;
  text-align: center;
}

.why-advertise .section-title {
  color: #00A650;
  text-transform: uppercase;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Benefit Card */
.benefit-card {
  background: #222;
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.5);
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #00A650;
}

.benefit-card p {
  font-size: 1rem;
  color: #ccc;
}

/* ================================
   Ad Formats Section
================================ */
.ad-formats {
  background-color: #111;
  padding: 4rem 2rem;
  text-align: center;
}

.ad-formats .section-title {
  color: #00A650;
  text-transform: uppercase;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Format Card */
.format-card {
  background: #222;
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.format-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.format-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #00A650;
}

.format-card p {
  font-size: 1rem;
  color: #ccc;
}

/* ================================
   Get Started CTA Section
================================ */
.get-started {
  text-align: center;
  padding: 3rem 0;
  background: #111;
}

.btn-cta {
  background-color: #00A650;
  color: #fff;
  padding: 1rem 2rem;
  text-transform: uppercase;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2rem;
}
