body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background: #03989f;
}

.container {
  /* max-width: 900px; */
  margin: 0 auto;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 20px;
}

.header {
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 1px solid #000;
  padding-bottom: 15px;
}

.company-logo {
  width: 250px;
  height: auto;
}

.main-title {
  /* position: relative; */
  /* display: inline-block; */
  padding-bottom: 5px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.content {
  border-top: 1px solid #000;
  padding: 20px;
}

.row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  /* flex-wrap: wrap; */
  /* border: 1px solid #000; */
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 6px;
  /* background: #fafafa; */
}

.left-column {
  /* flex: 30%; */
  /* max-width: 500px; */
  /* margin: 20px; */
  /* margin: auto; */
  /* padding: 20px 20px; */
  justify-content: center;
  align-items: center;
  /* border: 5px solid #000; */
  padding: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  /* display: block;
  justify-content: center;
  align-items: center;
  padding-right: 20px; */
}

.icon {
  width: 200px;
  /* height: auto; */
  /* object-fit: contain; */
}

.right-column {
  flex: 1;
  /* min-width: 250px; */
  /* justify-content: center;
  align-items: flex-start; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* border: 1px solid #000; */
  padding: 20px;
}

.section-title {
  font-size: xx-large;
  margin: 20px 0;
  font-size: 1.2rem;
  color: #333;
  justify-content: center;
  text-align: center;
}

.right-column ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
  text-align: left;
}

.cta-button {
  display: inline-block;
  margin-top: 10px;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: 10px 25px;
  background-color: #0077cc;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #005fa3;
}

/* Responsive design */
@media (max-width: 600px) {
  .content {
    /* flex-direction: column; */
    padding-top: 15px;
  }

  .row {
    /* display: flex;
    flex-direction: column; */
    /* align-items: flex-start; */
    display: block;
  }

  .left-column {
    /* border-bottom: 1px solid #eee; */
    display: flex;
    justify-content: center;
    padding-bottom: 15px;
    margin-bottom: 15px;
    /* padding-right: 0; */
  }

  .icon {
    width: 150px;
  }

  .right-column {
    padding-left: 0;
    align-items: center;
    /* text-align: center; */
  }

  /* .right-column ul {
    text-align: left;
    padding-left: 25px;
  } */

  .section-title {
    text-align: center;
    width: 100%;
  }
}
