body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #fbfbfb;
    color: #222;
    line-height: 1.6;
}

a {
    color: #509d5e;
    text-decoration: none;
}

.brand {
    color: #509d5e;
    font-weight: 700;
    letter-spacing: 2px;
}

h1,
h2,
h3,
h4 {
    font-weight: bold;
}

section {
    margin: 48px 0;
    padding: 0 18px;
}

ul {
    list-style: disc inside;
    margin-top: 10px;
}

.cta-btn,
.shop-link,
.newsletter button {
    background: #509d5e;
    color: #fff;
    border: none;
    border-radius: 22px;
    padding: 12px 32px;
    margin-top: 20px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 1rem;
    box-shadow: 0px 3px 10px rgba(80, 157, 94, .07);
}

.cta-btn:hover,
.shop-link:hover,
.newsletter button:hover {
    background: #376d41;
}

.shop-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 99%;
}

.hero {
    position: relative;
    height: 52vh;
    min-height: 370px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 30px;
}

.hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(60deg, rgba(80, 157, 94, 0.66) 0%, rgba(0, 0, 0, .4) 80%);
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 0 25px;
    width: 100%;
}

.hero h1 {
    font-size: 2.2rem;
    margin: 0;
}

.hero .subtitle {
    font-size: 1.22rem;
    margin: 15px 0 10px;
    letter-spacing: .5px;
}

.why-choose {
    max-width: 670px;
    margin: 0 auto;
}

.why-choose ul {
    margin: 16px 0 0 5px;
}

.why-choose li {
    margin: 7px 0;
}

.collections {
    max-width: 1100px;
    margin: 0 auto;
}

.collections-grid {
    display: flex;
    flex-wrap: wrap;
    margin-top: 18px;
    justify-content: center;
    gap: 22px;
}

.collection-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(86, 173, 104, 0.09);
    padding: 32px 24px 20px;
    width: 232px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform .13s;
}

.collection-card:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 8px 30px rgba(86, 173, 104, 0.13);
}

.collection-card h3 {
    margin: 0 0 10px;
    font-size: 1.3rem;
}

.collection-card p {
    margin: 0 0 10px;
    font-size: .97rem;
}

.favorites {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.favorites ul {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    display: flex;
    justify-content: center;
    gap: 32px;
}

.favorites li {
    background: #e3f5eb;
    color: #289048;
    border-radius: 18px;
    padding: 12px 20px;
    min-width: 135px;
    font-weight: 500;
}

.how-it-works {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 26px;
    flex-direction: row;
}

.step {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(86, 173, 104, 0.08);
    flex: 1 1 220px;
    min-width: 220px;
    margin: 0 10px;
    padding: 25px 23px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-num {
    background: #509d5e;
    color: #fff;
    font-size: 1.3rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 5px;
    flex-shrink: 0;
}

.step h4 {
    margin: 0 0 5px;
}

.newsletter {
    background: #e9fff1;
    border-radius: 16px;
    padding: 34px 24px;
    max-width: 480px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.newsletter form {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
    flex-wrap: wrap;
}

.newsletter input[type="email"] {
    padding: 10px 12px;
    border-radius: 30px;
    border: 1px solid #b7e7c7;
    font-size: 1rem;
    outline: none;
}

.newsletter button {
    font-size: 1rem;
}

.thanks {
    display: block;
    margin-top: 12px;
    color: #2d9142;
    font-weight: 500;
    min-height: 20px;
}

footer {
    background: #222;
    color: #d6f3e2;
    padding: 32px 12px 18px;
    text-align: center;
    font-size: 1.05rem;
}

footer a {
    color: #8fcb9a;
}

footer a:hover {
    color: #53c76a;
}

@media (max-width: 900px) {
    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        min-width: 190px;
        margin-bottom: 13px;
    }

    .collections-grid {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 700px) {
    .collections-grid {
        flex-direction: column;
        align-items: center;
    }

    .collection-card {
        width: 90vw;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 200px;
        height: 44vh;
    }

    .hero h1 {
        font-size: 1.13rem;
    }

    .step {
        width: 98vw;
    }

    .newsletter {
        padding: 16px 8px;
    }
}