body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.section {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 6rem 4rem;
  border-bottom: 1px solid #ddd;
}

.header-section {
  flex-direction: column;
  align-items: center;
}

.header-section img {
  max-width: 30%;
  margin: 3rem auto;
}

.section-color {
  background-color: #f9f9f9;
}

.section-white {
  background-color: #fff;
}

.section-content {
  max-width: 1200px;
}

.section p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #555;
}

.section-content p {
  padding: 1rem 0;
}

p.contact {
  padding: 0;
}

p.contact a {
  color: rgba(37, 91, 117, 0.8);
}

p.contact a:hover {
  color: rgba(37, 91, 117, 1.0);
}

.centered-text {
  text-align: center;
}

.centered-text h1 {
  font-size: 5rem;
  color: #333;
  margin: 0;
}

.centered-text h1.brand {
  padding: 3rem 0;
}

.centered-text p {
  padding: 2rem 8rem;
}

.split {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
}

.split .left, .split .right {
  flex: 1;
  min-width: 300px;
}

.media-content img {
  width: 100%;
  max-width: 400px;
  border-radius: 40px 0px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.media-content {
  display: flex; /* Add this line */
  justify-content: center; /* Add this line */
  align-items: center; /* Add this line */
  height: 100%; 
}

.button-panel {
  padding: 1rem 0;
}

.customer-logo, .customer-logo-small {
  padding: 1.5rem 0;
}

.customer-logo img {
  width: 40%;
  height: auto;
}

.customer-logo-small img {
  width: 20%;
  height: auto;
}

@media (max-width: 768px) {
  .customer-logo img {
    width: 60%;
    height: auto;
  }
  
  .customer-logo-small img {
    width: 40%;
    height: auto;
  }

  .centered-text h1 {
      font-size: 3rem;
  }

  .centered-text p {
    padding: 2rem 0;
  }

  .header-section img {
    max-width: 100%;
    margin: 2rem auto;
  }    
  
  .split {
    flex-direction: column;
  }

  .split .left, .split .right {
    flex: inherit;
    min-width: 300px;
  }
    
  .media-content img {
    width: 100%;
    max-width: 400px;
    border-radius: 40px 0px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  }  
}
