.hero {
      background: linear-gradient(135deg, #075985 0%, #0369a1 100%);
      color: white;
      padding: 4rem 2rem;
      text-align: center;
    }

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

.hero h1 {
      color: #fff;
      font-size: 2.5rem;
      margin-bottom: 1rem;
      line-height: 1.2;
    }

.hero p {
      font-size: 1.1rem;
      opacity: 0.95;
      margin-bottom: 2rem;
    }

main {
      max-width: 1100px;
      margin: 0 auto;
      padding: 3rem 2rem;
    }

.audience-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      background: white;
      padding: 2.5rem;
      border-radius: 12px;
      margin-bottom: 3rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

.stat {
      text-align: center;
    }

.stat-number {
      font-size: 2rem;
      font-weight: 700;
      color: #0284c7;
      margin-bottom: 0.5rem;
    }

.stat-label {
      color: #475569;
      font-size: 0.95rem;
    }

.packages {
      margin-bottom: 3rem;
    }

.packages h2 {
      color: #075985;
      font-size: 1.8rem;
      margin-bottom: 2rem;
      text-align: center;
    }

.packages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }

.package-card {
      background: white;
      border: 2px solid #e2e8f0;
      border-radius: 12px;
      padding: 2rem;
      transition: all 0.3s;
      position: relative;
    }

.package-card:hover {
      border-color: #0284c7;
      box-shadow: 0 8px 24px rgba(2, 132, 199, 0.15);
      transform: translateY(-4px);
    }

.package-card.featured {
      border-color: #0284c7;
      background: linear-gradient(135deg, #f0f9ff 0%, white 100%);
      box-shadow: 0 8px 24px rgba(2, 132, 199, 0.15);
    }

.package-badge {
      position: absolute;
      top: -12px;
      right: 20px;
      background: #f97316;
      color: white;
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
    }

.package-name {
      color: #075985;
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      margin-top: 1rem;
    }

.package-price {
      color: #0284c7;
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

.package-features {
      list-style: none;
      margin-bottom: 1.5rem;
    }

.package-features li {
      padding: 0.5rem 0;
      color: #475569;
      padding-left: 1.5rem;
      position: relative;
    }

.package-features li:before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #14b8a6;
      font-weight: bold;
    }

.package-button {
      display: block;
      width: 100%;
      padding: 0.75rem;
      background-color: #0284c7;
      color: white;
      text-decoration: none;
      border-radius: 6px;
      text-align: center;
      font-weight: 600;
      transition: background-color 0.2s;
      border: none;
      cursor: pointer;
      font-family: inherit;
    }

.package-button:hover {
      background-color: #075985;
    }

.why-advertise {
      background: white;
      padding: 3rem;
      border-radius: 12px;
      margin-bottom: 3rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

.why-advertise h2 {
      color: #075985;
      font-size: 1.8rem;
      margin-bottom: 2rem;
      text-align: center;
    }

.why-benefits {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }

.benefit {
      padding: 1.5rem;
      background: #f8fafc;
      border-left: 4px solid #0284c7;
      border-radius: 6px;
    }

.benefit h3 {
      color: #075985;
      font-size: 1.1rem;
      margin-bottom: 0.75rem;
    }

.benefit p {
      color: #475569;
      font-size: 0.95rem;
    }

.how-it-works {
      background: linear-gradient(135deg, #e0f2fe 0%, #ccfbf1 100%);
      padding: 3rem;
      border-radius: 12px;
      margin-bottom: 3rem;
    }

.how-it-works h2 {
      color: #075985;
      font-size: 1.8rem;
      margin-bottom: 2rem;
      text-align: center;
    }

.steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
    }

.step {
      background: white;
      padding: 1.5rem;
      border-radius: 8px;
      text-align: center;
    }

.step-number {
      display: inline-block;
      width: 40px;
      height: 40px;
      background: #0284c7;
      color: white;
      border-radius: 50%;
      line-height: 40px;
      font-weight: 700;
      margin-bottom: 1rem;
    }

.step h3 {
      color: #075985;
      font-size: 1.1rem;
      margin-bottom: 0.75rem;
    }

.step p {
      color: #475569;
      font-size: 0.95rem;
    }

.testimonials {
      background: white;
      padding: 3rem;
      border-radius: 12px;
      margin-bottom: 3rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

.testimonials h2 {
      color: #075985;
      font-size: 1.8rem;
      margin-bottom: 2rem;
      text-align: center;
    }

.testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

.testimonial {
      padding: 1.5rem;
      background: #f8fafc;
      border-radius: 8px;
      border-left: 4px solid #f97316;
    }

.testimonial p {
      color: #475569;
      font-size: 0.95rem;
      margin-bottom: 1rem;
      font-style: italic;
    }

.testimonial-author {
      color: #075985;
      font-weight: 600;
      font-size: 0.9rem;
    }

.contact-cta {
      background: linear-gradient(135deg, #0284c7 0%, #14b8a6 100%);
      color: white;
      padding: 3rem;
      border-radius: 12px;
      text-align: center;
      margin-bottom: 3rem;
    }

.contact-cta h2 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }

.contact-cta p {
      font-size: 1rem;
      margin-bottom: 2rem;
      opacity: 0.95;
    }

.contact-cta a {
      display: inline-block;
      background: white;
      color: #075985;
      padding: 0.75rem 2.5rem;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      transition: transform 0.2s;
    }

.contact-cta a:hover {
      transform: translateY(-2px);
    }

.faq {
      background: white;
      padding: 3rem;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

.faq h2 {
      color: #075985;
      font-size: 1.8rem;
      margin-bottom: 2rem;
      text-align: center;
    }

.faq-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }

.faq-item {
      padding-bottom: 1.5rem;
      border-bottom: 1px solid #e2e8f0;
    }

.faq-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

.faq-question {
      color: #075985;
      font-weight: 600;
      margin-bottom: 0.75rem;
    }

.faq-answer {
      color: #475569;
      font-size: 0.95rem;
    }

footer a {
      color: #bfdbfe;
      text-decoration: none;
    }

footer a:hover {
      text-decoration: underline;
    }

@media (max-width: 768px) {
      

      

      .hero h1 {
        font-size: 2rem;
      }

      main {
        padding: 2rem 1rem;
      }

      .audience-stats,
      .why-advertise,
      .how-it-works,
      .testimonials,
      .contact-cta,
      .faq {
        padding: 1.5rem;
      }

      .packages-grid {
        grid-template-columns: 1fr;
      }

      .faq-grid {
        grid-template-columns: 1fr;
      }
    }
