/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
header {
    background: #27ae60;
    padding: 1em 0;
    color: #fff;
}

.container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8em;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
}

.cta {
    background: #fff;
    color: #27ae60;
    padding: 0.5em 1.5em;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.cta:hover {
    background: #2ecc71;
    color: #fff;
}

/* Hero Section */
.hero {
    background: url('hero-image.jpg') no-repeat center center/cover;
    color: #fff;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h2 {
    font-size: 2.5em;
}

.hero p {
    font-size: 1.2em;
    margin: 20px 0;
}

.hero .cta {
    background: #fff;
    color: #27ae60;
    padding: 0.8em 2em;
    font-size: 1.2em;
}

/* Intro Section */
.intro {
    padding: 3em 0;
    text-align: center;
    background: #f8f8f8;
}

.intro p {
    font-size: 1.2em;
}

.intro a {
    text-decoration: none;
    color: #27ae60;
    font-weight: bold;
}

/* Product Section */
.products {
    padding: 3em 0;
    text-align: center;
}

.products h2 {
    font-size: 2em;
    margin-bottom: 1.5em;
}

.product-grid {
    display: flex;
    justify-content: space-around;
}

.product {
    max-width: 30%;
    text-align: center;
}

.product img {
    width: 100%;
    height: auto;
}

.product h3 {
    font-size: 1.5em;
    margin: 1em 0;
}

.product p {
    font-size: 1em;
}

.shop-now {
    display: inline-block;
    background: #27ae60;
    color: #fff;
    padding: 0.5em 1.5em;
    text-decoration: none;
    border-radius: 5px;
}

.shop-now:hover {
    background: #2ecc71;
}

/* How It Works Section */
.how-it-works {
    background: #f1f1f1;
    padding: 3em 0;
}

.how-it-works ul {
    list-style: none;
    text-align: center;
}

.how-it-works li {
    font-size: 1.2em;
    margin: 0.5em 0;
}

/* Footer Section */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 2em 0;
}

footer nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 1em 0;
}

footer nav ul li {
    margin-left: 20px;
}

footer nav ul li a {
    color: #fff;
    text-decoration: none;
}

