body{
  margin: 0;
  font-family: Arial, sans-serif;
  background:
  linear-gradient(
    to bottom,
    #eef6ea,
    #f5f0e6
  );
}

.details-section{

  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 40px 20px;

  box-sizing: border-box;
}

.details-box{

  background: white;

  width: 100%;
  max-width: 1200px;

  padding: 60px;

  border-radius: 30px;

  box-shadow:
  0 8px 20px rgba(0,0,0,0.1);

  box-sizing: border-box;
}

.details-box h1{

  color: #6f4e37;

  font-size: 37px;

  text-align: center;

  margin-bottom: 30px;
}

.details-box p{

  font-size: 17px;

  color: #555;

  line-height: 1.9;

  text-align: justify;
}


.details-box ul{

  margin: 30px 0;

  padding-left: 30px;
}

.details-box li{

  margin-bottom: 15px;

  font-size: 16px;

  color: #555;

  line-height: 1.7;

  text-align: justify;
}

.button-box{

  display: flex;
  justify-content: center;

  margin-top: 40px;
}

button{

  padding: 15px 40px;

  border: none;

  border-radius: 40px;

  background:
  linear-gradient(
    to right,
    #2d5a27,
    #6f4e37
  );

  color: white;

  font-size: 16px;

  cursor: pointer;

  transition: 0.3s;
}

button:hover{

  transform: scale(1.05);
}

@media (max-width: 768px) {

  .details-section{

    padding: 15px;
  }

  .details-box{

    width: 100%;

    padding: 50px 20px;

    border-radius: 20px;
  }

  .details-box h1{

    font-size: 24px;

    line-height: 1.4;

    margin-bottom: 20px;
  }

  .details-box p{

    font-size: 14px;

    line-height: 1.7;

    text-align: justify;
  }

  .details-box li{

    font-size: 14px;

    line-height: 1.6;
  }

  button{

    width: 100%;

    max-width: 220px;

    font-size: 14px;

    padding: 12px 0;
  }
}
.image-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 20px 0;
  flex-wrap: wrap; 
}

.image-container img {
  width: 45%;       
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  object-fit: cover;
}


@media (max-width: 768px) {
  .image-container {
    flex-direction: column; 
    gap: 15px;
  }

  .image-container img {
    width: 100%; 
  }
}