.hero-section {
  background-image: url('cloud-bg.jpeg');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.content,
.image {
  flex: 1;
}

.image img {
  max-width: 100%;
  height: auto;
}

.content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}
.content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.content p {
  font-size: 1.2rem;
  line-height: 1.5;
}

.next-section {
  background-color: #fff;
  padding: 100px 0;
  text-align: center;
}

.next-section .container {
  max-width: 800px;
  margin: 0 auto;
  display: block;
}

.next-section h2 {
  font-size: 2rem;
  margin-bottom: 0px;
}

.next-section h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 0;
}

.next-section p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.gray-section {
  background-color: #f2f2f2;
  padding: 100px 0;
}

.gray-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.gray-section .column {
  flex: 1;
  padding: 0 20px;
}

.gray-section h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.gray-section p {
  font-size: 1.2rem;
  line-height: 1.5;
}

.gray-section ul {
  list-style: none;
  padding-left: 0;
}

.gray-section li {
  margin-bottom: 10px;
}

.gray-section li em {
  font-style: italic;
}

.gray-section strong {
  font-weight: bold;
}

.white-section {
  background-color: #fff;
  padding: 100px 0;
}

.white-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.white-section .column {
  flex: 1;
  padding: 0 20px;
}

.white-section h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.white-section p {
  font-size: 1.2rem;
  line-height: 1.5;
}

.white-section ul {
  list-style: none;
  padding-left: 0;
}

.white-section li {
  margin-bottom: 10px;
}

.white-section li a {
  color: #333;
  text-decoration: none;
}

.white-section li a:hover {
  text-decoration: underline;
}













/* Media query for mobile devices */
@media (max-width: 767px) {
  .container {
    flex-direction: column;
  }

  .content,
  .image {
    width: 100%;
    text-align: center;
  }

  .content h1,
  .content p {
    text-align: center;
  }

  .next-section .container {
    padding: 0 20px; /* Add some padding on mobile */
  }
  
}