/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-image: url('https://media.istockphoto.com/id/1698103034/photo/aerial-photography-of-solar-energy-scene.webp?a=1&b=1&s=612x612&w=0&k=20&c=ia_4ODIwgAk0GGvKTYEwY2a6lnDRTcJCsP5ZZak8a6M='); /* Add the URL of your background image here */
    background-size: cover; /* Ensures the image covers the entire background */
    background-position: center; /* Centers the image */
    background-attachment: fixed; /* Keeps the background image fixed during scroll */
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: rgba(46, 125, 50, 0.8); /* Add some transparency for better readability */
    color: white;
    padding: 20px;
    text-align: center;
}

header p {
    font-size: 18px;
}

section {
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background to make content readable over the background image */
}

h2 {
    color: #2e7d32;
}

.intro p {
    font-size: 18px;
    line-height: 1.6;
}

.measures {
    background-color: rgba(249, 249, 249, 0.8);
    padding: 40px;
}

.measure-list {
    display: flex;
    flex-wrap: wrap;
}

.measure-item {
    background-color: white;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 30%;
}

.measure-item h3 {
    font-size: 20px;
    color: #2e7d32;
}

.measure-item p {
    font-size: 16px;
}

.appliances {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 40px;
}

.appliance-list {
    display: flex;
    flex-wrap: wrap;
}

.appliance-item {
    background-color: #e0f7fa;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 30%;
}

.appliance-item h3 {
    font-size: 20px;
    color: #006064;
}

.appliance-item p {
    font-size: 16px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
