body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background: url('eco.jpg') no-repeat center center fixed;
}
header {
    background: rgba(65, 163, 88, 0.8);
    color: white;
    padding: 20px;
    text-align: center;
}
h1{
    font-size: xx-large;
}
section {
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    margin: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    float: left;
    width: 30%;
    box-sizing: border-box;
}
.cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: calc(100% - 40px);
    box-sizing: border-box;
}
.cta button {
    background: rgba(34, 189, 70, 0.8);
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}
.cta button:hover {
    background: #218838;
}
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px;
    width: 100%;
}
.container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 30px;
    position: relative;
    z-index: 2;
    
}
.image-container{ 
    display: flex;
    justify-content: flex-end;
    align-items: center; 
    position: relative;
    padding-right: 5%;
}
.product-image {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-15%);
    z-index: 3;
    max-width: 400px;
    max-height: 400px
}
.product-image img {
    border-radius: 10px;
}
.footer-container {
    position:absolute;
    bottom:0;
    width:100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}