/* Reset default styles */
body, h1, h2, h3, h4, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #000000;
    margin: 0;
    padding: 0;
}

header {
    background-color: #02101A;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

/* Logo link styling */
.logo a {
  text-decoration: none;   /* removes underline */
  color: #ffffff;          /* white text */
}

.logo a:hover,
.logo a:active,
.logo a:visited {
  color: #ffffff;          /* keep it white for all states */
  text-decoration: none;   /* ensure underline never returns */
}

h1 {
    font-size: 48px;
    color: #02101A;
    margin-bottom: 15px;
}

h2 {
    font-size: 36px;
    color: #0D568C;
    margin-bottom: 15px;
}

h3 {
    font-size: 24px;
    color: #179BFD;
    margin-bottom: 15px;
}

h4 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 15px;
}

p {
    margin-top: 10px;
    margin-bottom: 10px;
}

.logo-text {
    font-family: 'Righteous', sans-serif;
    font-size: 48px;
}

/* Navigation */
nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #ffffff;
}

/* Mobile Menu */
@media screen and (max-width: 768px) {
    nav ul {
        display: none;
    }
    .menu-toggle {
        display: block;
        cursor: pointer;
    }
    .menu-toggle .hamburger {
        width: 30px;
        height: 3px;
        background-color: #ffffff;
        margin: 5px 0;
        transition: 0.4s;
    }
    .menu-toggle.active .hamburger:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .menu-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .hamburger:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

.social-icons {
    display: flex;
    align-items: center;
}

.social-icons a {
    text-decoration: none;
    color: #ffffff;
    font-size: 24px;
    margin-right: 10px;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 65vh;
    overflow: hidden;
    margin: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-image: url('https://shivermedia.com/images/new-Story.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px;
    box-sizing: border-box;
}

.hero-image h3 {
    color: #041622;
    margin: 20px;
}

.subtitle {
    width: 50%;
    text-align: right;
}

.subtitle h4 {
    color: #041622;
    margin: 0;
}

.subtitle .highlight {
    font-weight: bold;
    color: #00f1f5;
    text-shadow: 2px 2px 0px #041622;
}

.section-title {
    background-color: #02101A;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    font-family: 'Righteous', sans-serif;
}

/* -- Services Section -- */
/* -- Services Section -- */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  background-color: #fff;
}

.services-box {
  width: 280px;
  display: flex;               /* flex container */
  flex-direction: column;      /* stack content vertically */
  justify-content: space-between; 
  text-align: center;
  background: #f7f7f7;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.services-box:hover {
  transform: translateY(-5px);
}

.services-content {
  display: flex;
  flex-direction: column;
  flex: 1; /* make content fill card */
}

.services-content img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.services-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.services-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
  flex-grow: 1; /* pushes CTA down */
}

.services-cta {
  margin-top: auto; /* forces button area to the bottom */
}

.services .btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #0D568C;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.services .btn:hover {
  background-color: #179BFD;
  transform: translateY(-2px);
}

/* youtube section */
.youtube-videos {
    display: flex;
    flex-wrap: wrap; /* Allows responsiveness */
    justify-content: space-between;
    gap: 20px; /* Adds spacing between columns */
    background-color: white;
    text-align: center;
    padding: 10px 0;
}

.video-box {
    flex: 0 0 calc(33.33% - 20px); /* 3 columns */
    background-color: white;
    padding: 10px;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

.video-content h3 {
    font-size: 18px;
    margin: 10px 0;
}

.video-content p {
    font-size: 16px;
    margin: 10px 0;
}

iframe {
    width: 100%;
    height: auto;
}

.youtube-advertisement {
  width: 100vw;
  background-color: #004E7F; /* dark highlight blue */
  padding: 4rem 1rem;
  text-align: center;
  box-sizing: border-box;
}

.youtube-advertisement a {
  text-decoration: none;
  color: #ffffff;
}

.advertisement-content {
  max-width: 800px;
  margin: 0 auto;
}

.advertisement-content h2 {
  font-size: 2rem;
  color: #ffffff; /* deep navy */
  margin-bottom: 1rem;
}

.advertisement-content p {
  font-size: 1.1rem;
  color: #FFFFFF;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.advertisement-content button {
  background-color: #0077cc;
  color: #fff;
  border: none;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.advertisement-content button:hover {
  background-color: #005fa3;
}


/* Email Form */
.email-form {
    background-image: url('https://shivermedia.com/images/emailServices-BG.png');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 40px;
    text-align: center;
}

.email-content h2 {
    color: #02101A;
    font-family: 'Righteous', sans-serif;
}

.email-content p {
    font-size: 18px;
    color: #ffffff;
}

.email-form input[type="email"] {
    padding: 10px;
    font-size: 16px;
    border: none;
}

.email-form button[type="submit"] {
    padding: 10px 20px;
    background-color: #0D568C;
    color: #ffffff;
    border: none;
    cursor: pointer;
}

/* Clients Section */
.clients-section {
    background-color: #ffffff;
    text-align: center;
    padding: 20px 0;
}

.clients-title {
    color: #02101A;
    font-size: 36px;
    margin-bottom: 20px;
}

.clients-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.client-image {
    max-width: 100%;
}

/* About Section */
#about {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.centered-title {
    text-align: center;
    width: 100%;
}

.about-info {
    width: 60%;
    margin-right: 20px;
}

.sam-martin {
    width: 35%;
    text-align: center;
    margin-left: 20px;
}

.sam-martin img {
    max-width: 60%;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: #02101A;
    color: #ffffff;
    padding: 30px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-column p,
.footer-column a {
    color: #ffffff;
    text-decoration: none;
}

/* Footer Form */
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-form input,
.footer-form textarea {
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  width: 100%;
}

.footer-form button {
  padding: 10px;
  background: #0D568C;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-form button:hover {
  background: #179BFD;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: calc(100% - 10px); /* shrink width by 10px */
  margin: 10px;             /* add space around form */
}

.footer-form input,
.footer-form textarea {
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  width: 100%;
  box-sizing: border-box; /* keep inputs aligned inside */
}

/* Latest Article block stays inside column */
#latest-article {
  max-width: 100%;    /* never exceed column */
}

#latest-article img {
  width: 100%;        /* fill column, not page */
  height: auto;
  border-radius: 6px;
  margin-bottom: 10px;
}

#latest-article h4,
#latest-article p,
#latest-article a.read-more {
  max-width: 100%;    /* stay within column */
  display: block;
}

/* Patreom */
.patreon-item {
  margin-top: 15px;
  text-align: left;
}

.patreon-item img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 8px;
}

.patreon-item h4 {
  font-size: 1rem;
  color: #179BFD;
  margin: 0 0 6px;
}

.patreon-item .patreon-cta {
  display: inline-block;
  padding: 6px 12px;
  background: #0D568C;
  color: #fff;
  font-size: 0.85rem;
  border-radius: 4px;
  text-decoration: none;
}

.patreon-item a:hover .patreon-cta {
  background: #179BFD;
}

.social-icons a {
    color: #ffffff;
    margin-right: 10px;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #179BFD;
}

@media (max-width: 768px) {
    footer {
        flex-direction: column;
        text-align: center;
    }
    .footer-column {
        margin: 20px 0;
    }
}

/* ===== Digital Marketing Services (scoped) ===== */
/* ===== Essentials Hero (keep existing if already present) ===== */
.essentials-hero {
  position: relative;
  width: 100%;
  height: 65vh;
  overflow: hidden;
  margin: 0;
}
.essentials-hero-image {
  width: 100%;
  height: 100%;
  background-image: url('images/essentialsHero.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px;
  box-sizing: border-box;
}
.essentials-hero-image h3 { color: #041622; margin: 20px; }

/* ===== Services ===== */
.service-section { padding: 15px; background: #fff; }
.service-section > section { max-width: 1100px; margin: 0 auto; }
.service-section h1 { font-size: 2rem; color: #02101A; margin-bottom: 8px; }
.service-section > section > p { color: #555; margin-bottom: 15px; }

.service-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .service-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .service-cards { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  display: flex; flex-direction: column;
  background: #f7f7f7; border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px; padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
  min-height: 260px; min-width: 0; /* critical for grid */
}
.service-card:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.12); }
.service-card h2 { font-size: 1.15rem; color: #179BFD; margin-bottom: 6px; }
.service-card p { color: #444; line-height: 1.5; margin-bottom: 10px; flex: 1; }

.service-media {
  position: relative; width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 8px; overflow: hidden; margin: 10px 0;
  background: #e9eef3;
}
.service-media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.price-tag {
  display: inline-block; align-self: flex-start;
  font-weight: 600; font-size: 0.95rem;
  padding: 6px 10px; border-radius: 8px;
  background: #E9F4FF; color: #0D568C;
  border: 1px solid rgba(23,155,253,0.25);
}

/* ===== Essentials Hero ===== */
.essentials-hero {
  position: relative;
  width: 100%;
  height: 65vh;
  overflow: hidden;
  margin: 0;
}
.essentials-hero-image {
  width: 100%;
  height: 100%;
  background: url('images/essentialsHero.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px;
  box-sizing: border-box;
}
.essentials-hero-image h3 { color: #041622; margin: 20px; }
.subtitle { width: 50%; text-align: right; }
.subtitle h4 { color: #041622; margin: 0; }
.subtitle .highlight { font-weight: 700; color: #00f1f5; text-shadow: 2px 2px 0 #041622; }

/* ===== Services ===== */
.service-section { padding: 15px; background: #fff; }
.service-section > section { max-width: 1100px; margin: 0 auto; }
.service-section h1 { font-size: 2rem; color: #02101A; margin-bottom: 8px; }
.service-section > section > p { color: #555; margin-bottom: 15px; }

.service-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .service-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .service-cards { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  display: flex;
  flex-direction: column;
  background: #f7f7f7;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
  min-height: 260px;
  min-width: 0; /* critical for grid */
}
.service-card:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.12); }
.service-card h2 { font-size: 1.15rem; color: #179BFD; margin-bottom: 6px; }
.service-card p { color: #444; line-height: 1.5; margin-bottom: 10px; flex: 1; }

/* 16:9 image block inside service cards */
.service-media {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 8px;
  overflow: hidden;
  margin: 10px 0;
  background: #e9eef3;
}
.service-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* Price tag */
.price-tag {
  display: inline-block;
  align-self: flex-start;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 10px;
  border-radius: 8px;
  background: #E9F4FF;
  color: #0D568C;
  border: 1px solid rgba(23,155,253,0.25);
}

/* ===== Essentials: Why Section ===== */
.essentials-why {
  padding: 15px 0;
  margin: 15px 0;
  background: #fff;
  color: #02101A; /* ensure dark text on white */
}
.essentials-why h2 {
  font-size: 32px;
  color: #0D568C;
  margin-bottom: 10px;
  text-align: center;
}
.essentials-why .lede { text-align: center; color: #555; margin-bottom: 15px; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
  overflow: hidden; /* prevent horizontal scroll */
}
@media (min-width: 720px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  background: #f7f7f7;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  min-width: 0;               /* allow shrinking inside grid */
  display: flex;
  flex-direction: column;
}
.why-card h3 { color: #179BFD; font-size: 20px; margin-bottom: 8px; }

/* Fix white-on-white: visible subheads for pains/answers */
.pains-head,
.answers-head {
  color: #6B7A85;             /* Shiver-ish neutral grey */
  font-weight: 600;
  margin: 10px 0 6px;
}

.why-card .pains,
.why-card .answers {
  list-style: none;
  margin: 6px 0 10px;
  padding-left: 0;
}
.why-card .pains li,
.why-card .answers li {
  color: #444;
  margin: 6px 0;
  line-height: 1.45;
}

/* ===== Related Article (stacked: image → title → excerpt → button) ===== */
.why-related-heading {
  font-size: 1rem;
  font-weight: 600;
  color: #0D568C;
  margin: 12px 0 8px;
}

.why-related { margin-top: 8px; min-width: 0; }
.why-related__loading,
.why-related__empty {
  font-size: 0.9rem;
  color: #555;
  background: #f0f4f8;
  border: 1px dashed rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 10px;
}

/* Card as a vertical stack */
.why-related__card {
  display: flex;
  flex-direction: column;  /* image → title → excerpt → CTA */
  gap: 10px;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
.why-related__card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }

/* Top image 16:9 */
.why-related__media {
  position: relative;
  width: 100%;
  padding-top: 56.25%;        /* 16:9 */
  background: #e9eef3;
  overflow: hidden;
}
.why-related__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* Body (title, excerpt, CTA) */
.why-related__body { padding: 10px 12px 12px; min-width: 0; }
.why-related__title {
  margin: 0 0 6px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #02101A;
}
.why-related__excerpt { margin: 0 0 10px 0; font-size: 0.92rem; color: #444; }

/* CTA button: dark navy with white text */
.why-related__cta {
  display: inline-block;
  padding: 6px 12px;
  background: #02101A;  /* dark navy */
  color: #ffffff;
  font-size: 0.85rem;
  border-radius: 6px;
  transition: background .25s ease;
}
.why-related__card:hover .why-related__cta { background: #179BFD; }

/* IMPORTANT: remove any side-by-side override */
@media (min-width: 900px) {
  /* Intentionally left blank to avoid switching to 2-column layout */
}

/* ===== Managed Email Webform ===== */

/* ---- HERO ---- */
.cs-hero {
  position: relative;
  width: 100%;
  height: 65vh;
  margin: 0;
}

.cs-hero-image {
  width: 100%;
  height: 100%;
  background: url('images/cs-hero.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px;
  box-sizing: border-box;
}

.cs-hero-image h3 { color: #041622; margin: 20px; }

.cs-hero .subtitle { width: 50%; text-align: right; }
.cs-hero .subtitle h4 { color: #041622; margin: 0; }
.cs-hero .subtitle .highlight { font-weight: bold; color: #00f1f5; text-shadow: 2px 2px 0 #041622; }

/* ---- SERVICE CARDS ---- */
.cs-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.cs-card {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform .3s ease;
}
.cs-card:hover { transform: translateY(-5px); }

/* 18:9 (2:1) widescreen thumbs */
.cs-media {
  position: relative;
  width: 100%;
  padding-top: 50%;           /* 18:9 => 2:1 ratio */
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #e9eef3;
}
.cs-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.cs-card h2 { font-size: 1.3rem; color: #02101A; margin-bottom: .5rem; }
.cs-card p { font-size: .98rem; line-height: 1.6; color: #555; margin-bottom: .75rem; }
.cs-card .price-tag { font-size: .9rem; font-weight: 600; color: #0D568C; }

/* ---- WHY SECTION ---- */
.cs-why { background: #fff; padding: 2rem 1rem; text-align: center; }
.cs-why h2 { color: #0D568C; margin-bottom: .5rem; }
.cs-why .lede { color: #333; margin-bottom: 1.5rem; }

.cs-why .why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.cs-why .why-card {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 1.25rem;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.cs-why .why-card h3 { color: #02101A; margin-bottom: .5rem; }
.cs-why .pains-head, .cs-why .answers-head { color:#179BFD; margin:.75rem 0 .25rem; font-size:1rem; }
.cs-why ul { padding-left:1rem; color:#555; }

.cs-inquiry {
  background-color: #0D568C;             /* solid fallback */
  background-color: rgba(13, 86, 140, .6); /* 60% opacity */
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.cs-inquiry-content h2 {
  color: #ffffff;
  font-family: 'Righteous', sans-serif;
}

.cs-inquiry-content p {
  font-size: 18px;
  max-width: 720px;
  margin: .5rem auto 1.5rem;
  color: #f0f0f0;
}

.cs-inquiry-form input[type="email"] {
  padding: 10px;
  font-size: 16px;
  border: none;
  max-width: 320px;
  width: 100%;
}

.cs-inquiry-form button {
  padding: 10px 20px;
  background: #02101A; /* deep navy */
  color: #fff;
  border: none;
  cursor: pointer;
  margin-left: 6px;
}

/* ---- RESPONSIVE (optional consistency) ---- */
@media (max-width: 1024px) {
  .cs-cards { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 768px) {
  .cs-cards { grid-template-columns: 1fr; }
  .cs-hero .subtitle { width: 90%; text-align: left; }
}

.portfolio-link {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 8px 16px;
  background-color: #0D568C;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.portfolio-link:hover {
  background-color: #179BFD;
}

/* Resources + Miscellaneous Sections */
.section-light {
    background-color: #ffffff;
    color: #343a40;
    padding: 20px;
}

.section-dark {
    background-color: #343a40;
    color: #f8f9fa;
    padding: 20px;
}

.text-info {
    color: #17a2b8 !important;
}

.list-group {
    color: #f8f9fa;
    padding: 20px;
}

/* ===== Strategy & Consulting (SC) ===== */

/* Hero */
.sc-hero { position: relative; width: 100%; height: 60vh; overflow: hidden; }
.sc-hero-image{
  width:100%; height:100%;
  background: url('images/strategyHero.png') center/cover no-repeat;
  display:flex; flex-direction:column; align-items:flex-end; justify-content:flex-start;
  padding:20px; box-sizing:border-box;
}
.sc-hero-image h3{ color:#041622; margin:20px; }
.sc-subtitle{ width:50%; text-align:right; }
.sc-subtitle h4{ color:#041622; margin:0; }
.sc-subtitle .highlight{ font-weight:700; color:#00f1f5; text-shadow:2px 2px 0 #041622; }

/* Section wrapper */
.sc-section{ padding:15px; background:#fff; }
.sc-section > section{ max-width:1100px; margin:0 auto; }
.sc-section h1{ font-size:2rem; color:#02101A; margin-bottom:8px; }
.sc-section > section > p{ color:#555; margin-bottom:15px; }

/* Cards */
.sc-cards{
  display:grid; grid-template-columns:1fr; gap:16px;
}
@media (min-width:720px){ .sc-cards{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1040px){ .sc-cards{ grid-template-columns:repeat(3,1fr); } }

.sc-card{
  display:flex; flex-direction:column; min-width:0;
  background:#f7f7f7; border:1px solid rgba(0,0,0,.08);
  border-radius:12px; padding:16px;
  box-shadow:0 2px 8px rgba(0,0,0,.08);
  transition:transform .2s ease, box-shadow .2s ease;
  min-height:280px;
}
.sc-card:hover{ transform:translateY(-2px); box-shadow:0 6px 18px rgba(0,0,0,.12); }
.sc-card h2{ font-size:1.15rem; color:#179BFD; margin-bottom:6px; }
.sc-card p{ color:#444; line-height:1.5; margin-bottom:10px; flex:1; }

/* 16:9 media */
.sc-media{ position:relative; width:100%; padding-top:56.25%; border-radius:8px; overflow:hidden; margin:10px 0; background:#e9eef3; }
.sc-media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; }

/* Price + CTAs */
.price-tag{
  display:inline-block; align-self:flex-start;
  font-weight:600; font-size:.95rem; padding:6px 10px; border-radius:8px;
  background:#E9F4FF; color:#0D568C; border:1px solid rgba(23,155,253,.25); margin-bottom:8px;
}
.sc-cta{
  display:inline-block; padding:8px 14px; border-radius:8px; text-decoration:none;
  background:#02101A; color:#fff; font-weight:600; font-size:.92rem; transition:background .25s ease;
}
.sc-cta:hover{ background:#179BFD; color:#fff; }
.sc-cta--primary{ margin-top:8px; }

/* Process */
.sc-process{ padding:24px 0; }
.sc-process h2{ color:#0D568C; margin-bottom:12px; text-align:center; }
.sc-steps{
  display:grid; grid-template-columns:1fr; gap:12px; max-width:1100px; margin:0 auto; padding:0 15px;
}
@media (min-width:720px){ .sc-steps{ grid-template-columns:repeat(4,1fr); } }
.sc-step{
  background:#f7f7f7; border:1px solid rgba(0,0,0,.08); border-radius:12px; padding:14px;
  box-shadow:0 2px 8px rgba(0,0,0,.08);
}
.sc-step h3{ color:#179BFD; margin-bottom:6px; font-size:1rem; }
.sc-step p{ color:#444; }

/* CTA band */
.sc-inquiry {
  background: #0D568C;   /* lighter Shiver blue instead of #02101A */
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  margin-top: 24px;
}

.sc-inquiry-content h2 {
  color: #fff;
  margin-bottom: 8px;
}

.sc-inquiry-content p {
  color: #e6f3ff;
  margin-bottom: 16px;
}