body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
    text-align: center;
}

.container {
    display: flex;
    align-items: center; /* Center content vertically */
    justify-content: center;
    padding: 50px;
    gap: 50px;
}

.text-section {
    max-width: 500px;
    text-align: left;
}

.text-section h2 {
    color: #006400;
    font-size: 24px;
    margin-top: 0;
}

.text-section p {
    font-size: 15px;
   color: #006400;
    line-height: 1.5;
}

.why-choose {
    margin-top: 30px;
}

.why-choose h3 {
    color: #006400;
    margin-bottom: 5px;
}

.image-section {
    text-align: center;
}

.image-section img {
    max-width: 550px;
    height: auto;
}
<style>
@media print {
  body {
    display: none !important;
  }

