.message-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  	padding-bottom:50px;
}

.row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.column {
    flex: 0 1 calc(33.33% - 20px);
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.message-icon {
    font-size: 2.2em;
    margin-bottom: 15px;
}

.message-text {
    margin: 0;
	font-size: 18px!important;
}

@media screen and (max-width: 600px) {
    .column {
        flex: 0 1 calc(50% - 20px);
    }
}

.landing-text {
  text-align: center;
  padding: 15px;
}

.landing-text__title {
  font-size: 2rem; /* you can adjust the font size accordingly */
  font-weight: bold;
  margin-bottom: 1rem;
}

.landing-text__subtitle {
  font-size: 1.5rem; /* you can adjust the font size accordingly */
}

/* Media query for smaller screens */
@media only screen and (max-width: 600px) {
  .landing-text {
    padding: 15px;
  }

  .landing-text__title, .landing-text__subtitle {
    font-size: 1.2rem; /* adjust accordingly for smaller screen */
  }
}


/* Reset styles */
* {
  box-sizing: border-box;
	font-family: 'Lato', sans-serif;
	max-width: 100%;
}
a {
  text-decoration: none;
}
.p-l{
	text-align: left;
}
body{
	padding-bottom: 80px;
padding-left: 0!important;
	padding-right: 0!important;
	margin-left: 0!important;
	margin-right: 0!important;
	padding-top: 0!important;
	margin-top:0!important;
}
/* Styling for the header */
header {
  background-color: black;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 10px;
	width: 100%;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: 'Lato', sans-serif;
  text-align: center;
}
/* Styling for the main content */
main {
  max-width: 100%;
  margin: 0 auto;
  padding: 0px;
}
.main-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin: 20px 0;
  font-family: 'Lato', sans-serif;
}
.content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
	max-width: 1200px;
	margin-left: auto;
	margin-right:auto;
		padding-left: 10px;
	padding-right: 10px;
}
.content-left {
  flex-basis: 50%;
  padding-right: 20px;
  text-align: center;
}
.content-right {
  flex-basis: 50%;
  padding-left: 20px;
  text-align: center;
}
.content-left h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: 'Lato', sans-serif;
}
.content-left p {
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: 'Lato', sans-serif;
}
.content-left ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
}
.content-left li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin: 10px 0;
}
.content-left li:before {
  content: "\2714";
  color: green;
  margin-right: 10px;
}
.button-phone, .button-consult {
  display: block;
  margin: 20px auto;
  padding: 15px 30px;
  background-color: #ff6900;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  font-family: 'Lato', sans-serif;
}
.content-right img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 20px;
}
.rounded-image {
  border-radius: 7% 7% 7% 7%;
}

/* Media query for mobile screens */
@media only screen and (max-width: 600px) {
  .logo {
    font-size: 1rem;
  }
  .main-title {
    font-size: 2.2rem;
  }
  .content {
    flex-wrap: wrap;
  }
  .content-left, .content-right {
    flex-basis: 100%;
    padding: 0;
    margin: 10px 0;
  }
  .content-left h2 {
    font-size: 1.25rem;
  }
  .content-left p {
    font-size: 0.9rem;
  }
  .content-left li {
    font-size: 0.9rem;
  }
  .button-phone, .button-consult, .button-middle{
    font-size: 0.9rem;
  }
}
.image-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0;
  width: 100%;
  box-sizing: border-box;
	max-width: 90%;
	margin-left: auto;
	margin-right:auto;
}

.image-gallery img {
  flex-basis: 25%;
  max-width: 100%;
  object-fit: contain;
  margin: 10px;
  box-sizing: border-box;
	 width: 300px; /* Add an explicit width */
  height: 200px; /* Add an explicit height */
}

@media only screen and (max-width: 650px) {
  .image-gallery img {
    flex-basis: calc(100% - 20px);
    margin: 10px;
	  width: 140px; /* Add a smaller width for mobile */
    height: 100px; /* Add a smaller height for mobile */
  }
}

@media only screen and (min-width: 651px) {
  .image-gallery img {
    flex-basis: calc(25% - 20px);
  }
}

.sticky-button {
  position: fixed;
  bottom: 0;
  width: 100%;

  background-color: rgba(255,255,255,0.76);
  padding: 20px 0;
  text-align: center;
  font-family: 'Lato', sans-serif;
}

.sticky-button a {
  display: inline-block;
  background-color: #ff6900;
  color: #FFFFFF;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 19px;
  width:250px;
	margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 650px) {
  .sticky-button {
    display: block;
  }
  
  .sticky-button a {
    display: block;
  }
}
@media only screen and (min-width: 651px) {
	.sticky-button{
		display: none;
  }
}
.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
	max-width: 1200px;
	margin-left: auto;
	margin-right:auto;
		padding-left: 25px;
	padding-right: 25px;
}

.column {
  flex-basis: 100%;
}

@media only screen and (min-width: 650px) {
  .column {
    flex-basis: calc(100% / 3 - 20px);
  }
}
.money-back-guarantee {
  text-align: center;
	padding-top: 45px;
	
}

.money-back-guarantee__title-small {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 0.8;
  margin: 0;
}

.money-back-guarantee__title-big {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
}

.money-back-guarantee__text {
  font-size: 0.90rem;
  font-weight: 400;
  line-height: 1;
  margin: 0;
}

@media only screen and (max-width: 650px) {
  .money-back-guarantee__title-small {
    font-size: 1rem;
  }

  .money-back-guarantee__title-big {
    font-size: 2rem;
  }

  .money-back-guarantee__text {
    font-size: 1rem;
  }
}
.image-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.image-column {
  width: 20%;
  padding: 5px;
}

.image-column a {
  display: block;
  text-align: center;
}

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

@media (max-width: 767px) {
  .image-column {
    width: 50%;
  }
}
footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
width: 100%;
}
.footer {
  background-color: black;
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer-logo {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.footer-social {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

.footer-social a {
  color: white;
  margin-right: 10px;
}

.footer-social a:last-child {
  margin-right: 0;
}
.button-middle{
	max-width: 300px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	 display: block;
  margin: 20px auto;
  padding: 15px 30px;
  background-color: #ff6900;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  font-family: 'Lato', sans-serif;
	text-decoration: none;
}
.button-middle:active, .button-middle:focus {
  color: #fff;
}