/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #333;
  background: #fff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAVBAR ─── */
.navbar {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-menu a {
  font-size: 14px;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: #1a1a1a;
}

.nav-menu a.active {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 480px;
  background-color: #3a3a3a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 72px 24px 40px;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 420px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.hero-btn {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.hero-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Hero bottom text cards — no background, just white text */
.hero-cards {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding-bottom: 28px;
}

.hero-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hero-card {
  text-align: center;
  color: #fff;
}

.hero-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #fff;
}

.hero-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 200px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ─── GROWTH SECTION ─── */
.growth-section {
  padding: 80px 0;
  background: #fff;
}

.growth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.growth-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.3;
}

.growth-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.stats {
  display: flex;
  gap: 40px;
  margin-top: 28px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}

.growth-image .img-placeholder {
  width: 100%;
  height: 280px;
  background: #d0d8e4;
  border-radius: 12px;
}

/* ─── SERVICES SECTION ─── */
.services-section {
  padding: 80px 0;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 15px;
  color: #666;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: #edf0f5;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card-text {
  padding: 24px 24px 0;
}

.service-card-text h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.service-card-text p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.service-card-image {
  height: 220px;
  width: 100%;
  background: #c8d0dc;
  margin-top: 20px;
  border-radius: 0 0 8px 8px;
  flex-shrink: 0;
}

/* ─── DARK SECTIONS (newsletter + location + footer share same bg) ─── */
.newsletter-section,
.location-section,
.footer {
  background: #2d3a4a;
  color: #fff;
}

/* ─── NEWSLETTER ─── */
.newsletter-section {
  padding: 70px 0;
}

.newsletter-inner {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-inner h2 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.newsletter-inner p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
}

.newsletter-inner form label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
  margin-bottom: 8px;
}

.newsletter-inner form input[type="email"] {
  display: block;
  width: 100%;
  max-width: 500px;
  padding: 12px 16px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
  margin: 0 auto 16px;
  background: #fff;
  color: #333;
}

.newsletter-inner form input[type="email"]:focus {
  outline: 2px solid #4a6fa5;
}

.newsletter-inner form button {
  display: block;
  margin: 0 auto;
  background: #4a6fa5;
  color: #fff;
  padding: 11px 36px;
  border-radius: 30px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-inner form button:hover {
  background: #3d5f8f;
}

/* ─── LOCATION ─── */
.location-section {
  padding: 60px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.location-info h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.location-info > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.location-label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-top: 24px;
  margin-bottom: 4px;
}

.location-value {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.location-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 8px;
  background: #e8ecf0;
  display: block;
}

/* ─── FOOTER ─── */
.footer {
  padding: 50px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.footer-col p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-col form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-col form input[type="email"] {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  margin-bottom: 10px;
}

.footer-col form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.footer-col form input[type="email"]:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
}

.footer-col form button {
  align-self: flex-start;
  background: #4a6fa5;
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  border: none;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s;
}

.footer-col form button:hover {
  background: #3d5f8f;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ─── PRIVACY POLICY (keep working) ─── */
.privacy-section {
  padding: 70px 0;
  background: #fff;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h1 {
  font-size: 42px;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.last-updated {
  color: #666;
  font-size: 14px;
  margin-bottom: 40px;
}

.privacy-content h2 {
  font-size: 26px;
  color: #1a1a1a;
  margin-top: 40px;
  margin-bottom: 16px;
}

.privacy-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.privacy-content ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.privacy-content li {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-inner {
    flex-direction: column;
    gap: 12px;
  }

  .nav-menu {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-cards {
    position: relative;
    padding: 24px 0;
  }

  .hero {
    padding-bottom: 0;
  }

  .growth-grid,
  .location-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    gap: 28px;
  }
}

/* ─── LEAD ACQUISITION PAGE ─── */

/* Section 1 — Hero / Intro */
.lead-intro-section {
  background: #e8edf3;
  padding: 72px 0 64px;
  text-align: center;
}

.lead-intro-heading {
  font-size: 40px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.lead-intro-sub {
  font-size: 15px;
  color: #666;
  margin-bottom: 48px;
}

.lead-intro-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}

.lead-intro-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 14px 0 6px;
}

.lead-intro-card p {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}

.lead-intro-img {
  width: 100%;
  height: 200px;
  border-radius: 8px;
}

/* Section 2 — Our Work */
.work-section {
  background: #fff;
  padding: 72px 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.work-card-img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
}

.work-card-body {
  padding: 14px 0 0;
}

.work-card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.work-card-title-row h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.work-card-arrow {
  font-size: 18px;
  color: #1a1a1a;
}

.work-card p {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}

/* Section 3 — Get in Touch */
.contact-section {
  background: #fff;
  padding: 72px 0;
}

.contact-overlap-wrapper {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-start;
}

.contact-form-card {
  position: relative;
  z-index: 2;
  background: #f0f2f5;
  border-radius: 12px;
  padding: 32px;
  width: 480px;
  flex-shrink: 0;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #dde1e7;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
  background: #fff;
  font-family: inherit;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid #4a6fa5;
  border-color: transparent;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.send-inquiry-btn {
  background: #2d3a4a;
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.send-inquiry-btn:hover {
  background: #3d4f63;
}

.contact-bg-image {
  position: absolute;
  right: 0;
  top: 40px;
  width: 55%;
  height: 320px;
  border-radius: 12px;
  z-index: 1;
}

/* Section 4 — Our Location (white bg) */
.location-section-white {
  background: #fff;
  padding: 72px 0;
}

.location-white-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-white-map iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 8px;
  display: block;
}

.location-white-info h2 {
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.location-white-info > p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.location-value-dark {
  font-size: 14px;
  color: #555;
}

.location-label-dark {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 20px;
  margin-bottom: 4px;
}

/* img-placeholder base (shared) */
.img-placeholder {
  background: #c8d0dc;
}

/* ─── RESPONSIVE — Lead Acquisition ─── */
@media (max-width: 768px) {
  .lead-intro-cards {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .contact-overlap-wrapper {
    flex-direction: column;
  }

  .contact-form-card {
    width: 100%;
  }

  .contact-bg-image {
    position: relative;
    top: 0;
    width: 100%;
    height: 200px;
    margin-top: 20px;
  }

  .location-white-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ─── CONTENT STRATEGY PAGE ─── */

/* Section 1 — Our Services */
.cs-services-section {
  background: #e8edf3;
  padding: 72px 0 64px;
  text-align: center;
}

.cs-service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  text-align: center;
}

.cs-service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.cs-service-card-img {
  width: 100%;
  height: 200px;
  border-radius: 10px 10px 0 0;
  flex-shrink: 0;
}

.cs-service-card-body {
  background: #fff;
  padding: 20px 24px 28px;
  border-radius: 0 0 10px 10px;
  flex: 1;
}

.cs-service-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.cs-service-card-body p {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}

/* Section 2 — Articles / Blog */
.cs-articles-section {
  background: #fff;
  padding: 72px 0;
}

.cs-articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.cs-article-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cs-article-img {
  width: 100%;
  height: 200px;
  border-radius: 0;
  flex-shrink: 0;
}

.cs-article-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
}

.cs-article-card p {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}

.cs-article-meta {
  font-size: 12px;
  color: #aaa;
}

/* Section 3 — Contact Us */
.cs-contact-section {
  background: #fff;
  padding: 72px 0;
}

.cs-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.cs-contact-left h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.cs-contact-left > p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 32px;
}

.cs-contact-img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
}

.cs-contact-form {
  display: flex;
  flex-direction: column;
}

.cs-send-btn {
  align-self: flex-start;
  background: #2d3a4a;
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.cs-send-btn:hover {
  background: #3d4f63;
}

/* Section 4 — Our Location */
.cs-location-section {
  background: #fff;
  padding: 72px 0;
}

.cs-location-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 32px;
}

.cs-location-info h2 {
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.cs-location-info > p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.cs-location-map {
  width: 100%;
}

.cs-location-map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  display: block;
}

/* ─── RESPONSIVE — Content Strategy ─── */
@media (max-width: 768px) {
  .cs-service-cards,
  .cs-articles-grid,
  .cs-contact-grid,
  .cs-location-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ─── LOCAL SEO PAGE ─── */

.lseo-intro-section {
  background: #e8edf3;
  padding: 72px 0 64px;
  text-align: center;
}

.lseo-intro-heading { font-size: 38px; font-weight: 700; color: #1a1a1a; margin-bottom: 12px; }
.lseo-intro-sub { font-size: 15px; color: #666; margin-bottom: 48px; }

.lseo-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  text-align: left;
}

.lseo-intro-img { width: 100%; height: 230px; border-radius: 10px; }

.lseo-features { display: flex; flex-direction: column; gap: 24px; }
.lseo-feature h3 { font-size: 15px; font-weight: 700; color: #1a1a1a; margin-bottom: 4px; }
.lseo-feature p { font-size: 13px; color: #777; line-height: 1.6; }

.lseo-reach-section { background: #fff; padding: 72px 0; }
.lseo-reach-header { margin-bottom: 40px; }
.lseo-reach-header h2 { font-size: 28px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
.lseo-reach-header p { font-size: 14px; color: #666; }

.lseo-reach-rows { display: flex; flex-direction: column; gap: 48px; }
.lseo-reach-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.lseo-reach-img { width: 100%; height: 200px; border-radius: 10px; }
.lseo-reach-text h3 { font-size: 18px; font-weight: 700; color: #1a1a1a; margin-bottom: 12px; }
.lseo-reach-text p { font-size: 14px; color: #666; line-height: 1.7; }

.lseo-contact-section { background: #fff; padding: 72px 0; }
.lseo-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.lseo-contact-left h2 { font-size: 32px; font-weight: 700; color: #1a1a1a; margin-bottom: 12px; }
.lseo-contact-left > p { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 28px; }
.lseo-contact-label { font-size: 14px; font-weight: 700; color: #1a1a1a; margin-bottom: 2px; }
.lseo-contact-value { font-size: 14px; color: #555; margin-bottom: 16px; }

.lseo-contact-form { display: flex; flex-direction: column; }

.lseo-location-section { background: #2d3a4a; color: #fff; padding: 60px 0; }
.lseo-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.lseo-location-info h2 { font-size: 30px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.lseo-location-info > p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; }
.lseo-location-label { font-size: 14px; font-weight: 600; color: #fff; margin-top: 20px; margin-bottom: 4px; }
.lseo-location-value { font-size: 14px; color: rgba(255,255,255,0.8); }
.lseo-location-map iframe { width: 100%; height: 220px; border: 0; border-radius: 8px; display: block; }

@media (max-width: 768px) {
  .lseo-intro-grid,
  .lseo-reach-row,
  .lseo-contact-grid,
  .lseo-location-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ─── REAL IMAGES ─── */

/* Hero background image */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
}

/* Growth section image */
.growth-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Services section image (replaces .service-card-image div) */
img.service-card-image {
  height: 220px;
  width: 100%;
  object-fit: cover;
  margin-top: 20px;
  border-radius: 0 0 8px 8px;
  display: block;
  flex-shrink: 0;
}

/* Lead intro card images */
img.lead-intro-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Work card images */
img.work-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* Contact background image */
img.contact-bg-image {
  position: absolute;
  right: 0;
  top: 40px;
  width: 55%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  z-index: 1;
}

/* Content Strategy service card images */
img.cs-service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  display: block;
  flex-shrink: 0;
}

/* Content Strategy article images */
img.cs-article-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

/* Content Strategy contact image */
img.cs-contact-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* Local SEO intro image */
img.lseo-intro-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* Local SEO reach images */
img.lseo-reach-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
