main.marketing-main {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.marketing-container {
  padding: 2rem 1rem;
  margin: 0 auto;
  max-width: 1280px;
}

.marketing-hero {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}

.marketing-row {
  display: flex;
  align-items: center;
  padding: 1.25rem 0;
}

.marketing-content {
  text-align: center;
}

.marketing-content > * + * {
  margin-top: 2.5rem;
}

.marketing-heading {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}

.marketing-paragraph {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
}

.marketing-button {
  display: inline-flex;
  padding: 1.25rem 2.25rem;
  background-color: #18181b;
  color: white;
  border: 1px solid #18181b;
  border-radius: 1rem;
  text-decoration: none;
  justify-content: center;
  gap: 0.625rem;
}

.marketing-button:hover {
  background-color: white;
  color: black;
}

.marketing-button h2 {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
}

/* New styles for additional sections */
.company-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
  text-align: center;
}

.stat-item {
  padding: 2rem;
  background-color: #f8f8f8;
  border-radius: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 0.5rem;
}

.about-section {
  margin: 4rem 0;
  padding: 3rem 0;
  background-color: #f9f9f9;
}

.team-section {
  margin: 4rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  text-align: center;
  padding: 1.5rem;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.section-heading {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .marketing-paragraph {
    margin-bottom: 3rem;
  }
}

@media (min-width: 768px) {
  .marketing-hero {
    flex-direction: row;
  }

  .marketing-row {
    padding-bottom: 5rem;
    padding-top: 2.5rem;
  }

  .marketing-heading {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .marketing-container {
    padding: 4rem 0.75rem;
  }
}
