* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f1eb;
  overflow-x: hidden;
}
/* Modal overlay */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

/* Modal box */
.modal-content {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
}

/* Form styling */
#campaignForm input {
  width: 100%;
  padding: 0.5rem;
  margin: 0.5rem 0 1rem 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.submit-btn {
  width: 100%;
  padding: 0.7rem;
  background-color: #ff4081;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #e73370;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* Hero */
.heroH20 {
  text-align: center;
  margin: 50px auto;
  margin-top: 100px;
}

.heroH20 h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
}

/* Small devices (≥576px) */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
  .heroH20 h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
  }
}

/* Medium devices (≥768px) */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  .heroH20 h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
  }
}

/* Large devices (≥992px) */
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
  .heroH20 h1 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
  }
}

@media (max-width: 480px) {
  .heroH20 h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
  }
}

/* Extra large devices (≥1200px) */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
  .heroH20 h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
  }
}

/* Full-width container */
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-brand {
  z-index: 1001;
}

a {
  text-decoration: none;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #ff6b35;
}

.cta-button {
  background: #ff6b35;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background: #e55a2b;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(180deg, #000 0%, #000000 100%);
  min-height: 79vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 0 0;
  position: relative;
}

.hero-content {
  max-width: 800px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.2;
}
.hero-title-about {
  font-size: 3.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.hero-cta {
  background: #ff6b35;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-cta:hover {
  background: #e55a2b;
}

/* About Section */
.about {
  padding: 40px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  color: #333;
}

.about-intro {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #000;
}

.about-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.about-vision {
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
  background: #f5f5f5;
  padding: 40px 0;
}

.services-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: #333;
}

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

.service-item {
  background: #ebe7e1;
  padding: 2rem;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
  color: #ff6b35;
  margin-bottom: 1rem;
}

.service-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.service-item p {
  color: #666;
  line-height: 1.6;
}

/* Team Section */
.team {
  background: #f5f5f5;
  padding: 40px 0;
}

.team-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: #333;
}

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

.team-member {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-image {
  height: 300px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-info {
  padding: 1.5rem;
}

.member-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.member-info p {
  color: #666;
  margin-bottom: 1rem;
}

.member-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.member-stats span {
  font-size: 0.9rem;
  color: #999;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
}

.social-icons svg {
  width: 20px;
  height: 20px;
  color: #666;
  cursor: pointer;
  transition: color 0.3s ease;
}

.social-icons svg:hover {
  color: #ff6b35;
}

/* Philosophy Section */
.philosophy {
  background: #f5f5f5;
  padding: 40px 0;
}

.philosophy-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: #333;
}

.philosophy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.philosophy-text h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.philosophy-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
}

.philosophy-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Newsletter Section */
.newsletter {
  background: linear-gradient(135deg, #8b4513 0%, #000 100%);
  padding: 50px 0;
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.newsletter-content p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
  color: #ccc;
}

.newsletter-form button {
  background: #ff6b35;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background: #e55a2b;
}

/* Footer */
.footer {
  background: #000;
  color: #fff;
  padding: 25px 0 20px;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  color: #666;
  font-size: 0.9rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 18px 30px 30px;
    gap: 30px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    z-index: 1000;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
  }

  .nav-container.active {
    right: 0;
  }

  .nav-menu {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .nav-menu a {
    color: #333;
    font-size: 1.2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }
  .hero-title-about {
    font-size: 2.5rem;
  }

  .about-content,
  .philosophy-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .services-title,
  .team-title,
  .philosophy-title {
    font-size: 2rem;
  }

  .newsletter-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-title-about {
    font-size: 2rem;
  }
  .services-title,
  .team-title,
  .philosophy-title {
    font-size: 1.8rem;
  }

  .newsletter-content h2 {
    font-size: 1.8rem;
  }

  .about-intro {
    font-size: 1.3rem;
  }
}

.client-logos {
  overflow: hidden;
  background: #f4f1ec;
  display: flex;
  bottom: 0;
  position: relative;
  background-image: url(client-background.png?width=2600&height=508);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 40vh;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.logos-slide {
  display: flex;
  gap: 60px;
  animation: slide 25s linear infinite;
}

.logos-slide img {
  width: 100px;
  height: auto;
  filter: grayscale(0%);
  opacity: 0.8;
  transition: 0.3s ease;
}

.logos-slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Animation */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .logos-slide img {
    width: 95px;
  }
}

@media (max-width: 480px) {
  .logos-slide {
    gap: 30px;
  }
  .logos-slide img {
    width: 75px;
  }
}
/* Section Background */
.contact-section {
  background: #f5f1eb;
  padding: 120px 20px;
  display: flex;
  justify-content: center;
}

/* Main container */
.contact-container {
  width: 100%;
  max-width: 650px;
}

/* Titles */
.contact-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2b2b2b;
}

.contact-subtitle {
  color: #555;
  font-size: 16px;
  margin-bottom: 40px;
}

/* Form */
.contact-form .form-group {
  margin-bottom: 35px;
}

.contact-form label {
  display: block;
  font-size: 15px;
  margin-bottom: 10px;
  color: #333;
  font-weight: 500;
}

.contact-form input {
  width: 100%;
  border: none;
  background: transparent;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  font-size: 18px;
  outline: none;
  color: #444;
}

.contact-form input::placeholder {
  color: #bdbdbd;
}

/* Phone Styling */
.phone-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-flag {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px 8px 0;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
}

.phone-flag img {
  width: 24px;
  height: auto;
}

.phone-flag .arrow {
  font-size: 12px;
  color: #555;
}

.phone-input {
  flex: 1;
}

/* Button */
.submit-btn {
  background: #000;
  color: #fff;
  padding: 14px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
}

.submit-btn:hover {
  background: #333;
}

/* Responsive */
@media (max-width: 480px) {
  .contact-title {
    font-size: 26px;
  }

  .contact-form input {
    font-size: 16px;
  }

  .phone-wrapper {
    flex-direction: row;
  }

  .phone-flag {
    padding-right: 5px;
  }
}

/* Case Studies */
.case-studies {
  padding: 20px 80px 100px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 32px;
  margin-bottom: 35px;
}

.card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.info {
  padding: 16px;
}

.info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.info p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 8px;
  margin-right: 6px;
}

.orange {
  background: #f5d9b2;
  color: #884d00;
}
.purple {
  background: #e1d4f9;
  color: #593bb2;
}
/* Footer */
footer {
  background: #000;
  color: #ccc;
  text-align: center;
  padding: 40px 20px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-logo {
  width: 120px;
}

footer ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

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

footer a.active,
footer a:hover {
  color: #fff;
}

footer p {
  font-size: 14px;
  margin-top: 10px;
}

/* Hero */
.heroAbout {
  text-align: left;
  padding: 80px 100px;
}

.heroAbout h1 {
  font-size: 2.4rem;
  font-weight: 700;
  max-width: 700px;
  margin-bottom: 40px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* container wrapper */
.wrap {
  margin: 0 auto;
  padding: 10px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: #fff;
}

.cta-top {
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  border-radius: 18px;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

/* hamburger mobile */
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.hamburger .bar {
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
  display: block;
}

/* Hero */
.heroAboutHome {
  padding: 70px 0 28px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 34px;
  align-items: start;
  padding: 36px 0 12px;
}

.hero-eyebrow {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 10px;
}
.hero-title-about {
  font-size: 44px;
  margin: 0 0 18px;
  font-weight: 800;
  line-height: 1.02;
  color: #000000;
  max-width: 720px;
}
.hero-title {
  font-size: 44px;
  margin: 0 0 18px;
  font-weight: 800;
  line-height: 1.02;
  color: #ffffff;
  max-width: 720px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  align-items: center;
  margin-top: 26px;
}
.stat {
  font-weight: 800;
  font-size: 20px;
}
.stat-label {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}

/* mini people cards on the right */
.mini-cards {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.mini-card {
  width: 120px;
  height: 180px;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.mini-card img {
  width: 84px;
  height: 84px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 8px;
}
.mini-card h4 {
  font-size: 13px;
  margin: 4px 0;
  font-weight: 700;
}
.mini-card p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

/* big rounded banner with background image */
.banner-wrap {
  margin: 32px 0;
}
.banner {
  border-radius: 20px;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  align-items: center;
  padding: 28px;
  background-image: url("https://framerusercontent.com/images/BCa245K4IwQnNkIaAMlo3YkGOU.png?width=2600&height=508");
  background-size: cover;
  background-position: center;
  box-shadow: var(--card-shadow);
  color: #fff;
}
.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}
.banner-left {
  max-width: 64%;
}
.banner h2 {
  font-size: 26px;
  margin: 0 0 10px;
  font-weight: 800;
  color: #fff;
  line-height: 1.06;
}
.banner p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.95);
}
.banner .launch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.18);
}

/* logos row under banner */
.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 18px 0;
  opacity: 0.95;
}
.logos-row img {
  max-height: 36px;
  filter: grayscale(100%);
  opacity: 0.9;
}

/* content grid - main section */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  align-items: start;
  padding: 36px 0;
}
.lead {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 12px;
}
.text-muted {
  color: var(--muted);
  font-size: 15px;
}
.card-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

/* two-column block with image */
.two-col {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
  margin: 34px 0;
}
.two-col img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* stacked info blocks (like ecosystem, solutions, experts) */
.info-block {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.info-block .left {
  flex: 1;
}
.info-block .right {
  flex: 1;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.info-block h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
}

/* program numbers area */
.program {
  padding: 24px 0;
}
.program-grid {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-top: 14px;
  flex-wrap: wrap;
}
.program-item {
  text-align: left;
}
.program-item .num {
  font-weight: 900;
  font-size: 20px;
}
.program-item .lbl {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}

/* floating action buttons (right edge) */
.fab-wrap {
  position: fixed;
  right: 20px;
  bottom: 110px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 80;
}
.fab {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  font-size: 18px;
}

/* small utility */
.muted-line {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin: 22px 0;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr 360px;
    gap: 20px;
    padding: 28px 0;
  }
  .content-grid {
    grid-template-columns: 1fr 320px;
    gap: 22px;
  }
  .two-col {
    grid-template-columns: 1fr 280px;
  }
}
@media (max-width: 900px) {
  .hamburger {
    display: block;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 0;
  }
  .mini-cards {
    justify-content: flex-start;
  }
  .banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .content-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .logos-row {
    padding: 12px 0;
  }
}
@media (max-width: 520px) {
  .hero-title {
    font-size: 28px;
  }
  .hero-title-about {
    font-size: 28px;
  }
  .banner {
    padding: 18px;
    border-radius: 12px;
    min-height: 120px;
  }
  .wrap {
    padding: 20px 16px;
  }
}
