
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;  
  justify-content: center;
  align-items: center;
  background-color: #f5ebe9;
}
.container {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  /* gap: 20px;   
  /* padding: 20px; */
  background-color: #f5ebe9;
}

.section1 {
  background-color: #e3b5a5;
  padding: 40px;  
  flex: 1 1 300px;  
  display: flex;
  flex-direction: column;
  justify-content: center;  
  color: #000;
}
.section1 h2 {
  margin-top: 0;
  font-size: 3rem;
}


.button {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 20px;
  border: solid 2px #000;
  font-size: 1.1rem;
  font-weight: 700; 
  color: #000;
  text-decoration: none;
  border-radius: 2px;
  text-align: center;
}

.section2 {
  flex: 2 1 500px; 
  display: flex;
  justify-content: center;
}
.section2 img {
  width: 100%;
  max-width: 900px;
  height: 600px;
}

.section3 {
  flex: 1 1 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #f5ebe9;
}
.section3 img {
  max-width: 400px;
  height: auto;
  background-color: aliceblue;
}


.section4 {
  flex: 2 1 250px;
  background-color: #d0d6cc;
  color: #333;
  display: flex;
  flex-direction: column; 
  justify-content: center;
  align-items: center;

  & .p1{
    font-size: 1rem;
  }

  & .p2{
    font-size: 2.5rem;
  }
}

.section5 {
  flex: 2 1 250px;
  padding: 10px;
  background-color: #c2aedb;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.section6 {
  flex: 2 1 250px;
  padding: 10px;
  background-color: #e3b5a5;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;   
}

.section7 {
  flex: 2 1 200px;
  display: flex;
}
.section7 img {
  width: 350px;
  height: auto;
}