body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #ecffe8;
}

#header {
    background-color: #ffffff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

#logo1, #logo2 {
    width: 100px; /* Adjusted size */
    height: 100px; /* Adjusted size */
    cursor: pointer;
}

#gleamzest {
    margin: 500 auto; /* Centering the logo */
}

#search {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    background-color: #1e90ff;
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

#search:hover {
    background-color: #007acc;
}

.container {
    margin-top: 150px; /* Adjusted margin */
    padding: 20px;
    text-align: center;
}
.headline {
    background-color: #1e90ff;
    color: #ffffff;
    padding: 20px;
    border-radius: 20px;
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
}

.headline h1 {
    line-height: 1.2; /* Adjust line height for better spacing */
}


.features {
    text-align: center;
    margin-top: 20px;
}

.features ul {
    list-style-type: none;
    padding: 0;
}

.features li {
    display: inline;
    margin: 0 10px;
    font-size: 20px; /* Adjusted font size */
    color: red;
}

.features li:before {
    content: "•";
    color: orange;
    margin-right: 10px;
}

.contact {
    padding: 20px;
    margin-top: 20px;
    text-align: left;

    border-radius: 10px;
}

.contact p {
    background-color: orange;
    padding: 5px;
    text-align: left;
    display: inline; /* Ensuring background only covers text */
}


.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.product {
    width: 300px; /* Adjusted width */
    height: 200px; /* Adjusted height */
    margin: 20px;
    border-radius: 20px; /* Rounded corners */
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.product img {
    width: 100%;
    height: auto;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.product a {
    text-decoration: none;
    color: #000000;
    display: block;
    padding: 10px;
}

.contact-info {
    margin-top: 10px;
}

#copyright {
    text-align: center;
    margin-top: 20px;
}
