/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Body Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7f6;
    color: #333;
}

/* Header */
header {
    background-color: #55cc2e;
    color: white;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo h1 {
    font-size: 2.5em;
}

header nav ul {
    list-style-type: none;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.2em;
}

header nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
#hero {
    background: url('https://cdn.prod.website-files.com/63e6b9ee2fc65e7ab40f9328/63f8da238e458a72c937d593_What%20Feng%20Shui%20Says%20About%20Plants%20in%20Your%20Bedroom%20-%202023%20alt.jpg') no-repeat center center;
    background-size: cover;
    color: #000000;
    padding: 80px 20px;
    text-align: center;
}

#hero h2 {
    font-size: 40px;
    margin-bottom: 20px;
}
#hero .cta-btn {
    padding: 15px 30px;
    background-color: #27ae60;
    color: white;
    font-size: 1.2em;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
}

#hero .cta-btn:hover {
    background-color: #2ecc71;
}

/* About Section */
.about {
    padding: 50px 20px;
    background-color: #ffffff;
    text-align: center;
}

.about h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.stat {
    max-width: 250px;
    text-align: center;
}

.stat h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

/* Plants Section */
.plants {
    padding: 50px 20px;
    text-align: center;
    background-color: #f4f7f6;
}

.plants h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.product-card {
    background-color: white;
    width: 220px;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 1.1em;
}

.cta-btn {
    padding: 15px 30px;
    background-color: #3498db;
    color: white;
    font-size: 1.2em;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
}

.cta-btn:hover {
    background-color: #2980b9;
}

/* Contact Section */
.contact {
    padding: 50px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 80%;
    padding: 10px;
    margin: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form button {
    padding: 10px 30px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
}

.contact-form button:hover {
    background-color: #2ecc71;
}

/* Footer */
footer {
    background-color: #55cc2e;
    color: white;
    text-align: center;
    padding: 20px;
}
