div.new_container {
  width: 95%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: auto;
  align-items: center;
}

div.marine {
  background: linear-gradient(to right, #14532D, #2E7D32);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 10px;
  width: 95%;
  max-width: 1200px;
  margin: 20px auto;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

div.marine1 {
  flex: 1;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}

div.marine1 img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 10px;
}

div.marine2 {
  flex: 1;
  padding: 20px;
  color: whitesmoke;
}

div.marine2 h3 {
  margin-top: 0;
  font-size: 17px;
  text-align: center;
}

div.marine2 p {
  text-align: justify;
  margin: 10px 0;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  div.marine {
    flex-direction: column;
    width: 100%;
  }
  div.marine1 img {
    width: 90%;
    max-width: 100%;
  }
  div.marine2 {
    padding: 15px;
  }
}/*# sourceMappingURL=new.css.map */