/* ==================================================  
   CONTENT MARKETING PAGE STYLES
================================================== */

/* ---------- HERO SECTION ---------- */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: var(--brand-navy);
    color: var(--accent-blue-light);
    border-radius: 0 0 12px 12px;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 15px;
    color: inherit;
    color: var(--primary);
}

.hero p {
    font-size: clamp(16px, 2vw, 20px);
    margin: 15px auto;
    max-width: 800px;
    line-height: 1.6;
}

/* ---------- SERVICE CONTENT ---------- */
.service-content {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Headings for sections */
.service-overview h2,
.service-components h2,
.strategic-framework h2 {
    color: var(--primary);
    font-size: clamp(26px, 3vw, 36px);
    margin-bottom: 15px;
    text-align: center;
}

/* Paragraphs for sections */
.service-overview p,
.service-components p,
.strategic-framework p {
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 20px;
}

/* ---------- SERVICE COMPONENTS (Cards) ---------- */
.service-components article {
    background: var(--light);
    padding: 25px 20px;
    margin-bottom: 25px;
    border-radius: 12px;
    border-left: 5px solid var(--brand-navy);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-components article:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-components h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

/* ---------- CALL TO ACTION (CTA) ---------- */
.cta-wrapper {
  text-align: center;
  background: var(--accent);
  color: var(--primary);
  padding: 40px 20px;
  border-radius: 12px;
  margin-top: 40px;
}

.cta-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-wrapper p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.cta-wrapper .cta-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--light);
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.cta-wrapper .cta-btn:hover,
.cta-wrapper .cta-btn:focus {
  background: var(--brand-navy);
  color: var(--light);
  transform: translateY(-2px); /* subtle lift */
}

.cta-wrapper .cta-btn:active {
  transform: translateY(0); /* reset on click */
}


/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 768px) {
    .hero {
        padding: 60px 15px;
    }

    .service-content {
        padding: 0 15px;
    }

    .service-components article {
        padding: 20px 15px;
    }
}
