.container_center {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  flex: 1; /* Fill remaining vertical space */
  text-align: center;
  line-height: 2;
}

.container_center h2 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
}

.quote_button {
  background-color: #4CAF50;
  color: white;
  padding: 8px 12px;
  margin: 0 0 0 0;
  border: 1px solid #354039;
  border-radius: 4px;
  cursor: pointer;
  font-size: 20px;
  transition: background-color 0.3s;
  margin-top: 5px;
  text-decoration: none;
  font-weight: bold;
}

.quote_button:hover {
  background-color: #45a049;
}

.quote_text {
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: bold;
}

/* Content */

.content-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0;
}

.content-section h3 {
  margin-top: 0;
}

.text-image {
  flex: 0 0 48%;
  margin-bottom: 20px;
}

.text-image img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.text {
  flex: 0 0 48%;
  text-align: justify;
}

@media screen and (max-width: 768px) {
.text-image,
.text {
flex: 0 0 100%;
}

.container_center {
display: flex;
flex-direction: column;
}

#section1-text {
order: 1;
}

#section1-image {
order: 2;
}

#section2-text {
order: 3;
}

#section2-image {
order: 4;
}

#section3-text {
order: 5;
}

#section3-image {
order: 6;
}

#bottom-section {
order: 7;
}

.container_center h2 {
margin-bottom: 0;
}
}

/* Bottom Section */

.bottom-section {
  text-align: center;
  width: 100%;
}

.bottom-section .text {
  display: inline-block;
  text-align: center;
  max-width: 100%;
  padding: 0;
}

.bottom-section ul {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: left;
  list-style-position: inside;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bottom-section li {
  margin-bottom: 10px;
}

.bottom-section h3 {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
.bottom-section .text {
  text-align: justify;
  }
}