* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #fff;
    color: #333;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #ffffff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 20;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #2E7D32;
}

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: #333;
}

.cta-btn {
    padding: 10px 20px;
    background: #2E7D32;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}

.hero {
    height: 80vh;
    background: url('cleaning-tools-hero.jpeg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 52px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
    color: #fff;
    font-size: 22px;
    margin: 10px 0 20px;
}

.hero-btn {
    background: #2E7D32;
    padding: 12px 28px;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}

/* Services */
.services {
    padding: 80px 40px;
    text-align: center;
}

.service-boxes {
    margin-top: 40px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-box {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    width: 300px;
}

/* About */
.about {
    padding: 80px 40px;
    background: #f1f9f1;
}

.about-text {
    max-width: 700px;
    margin: auto;
}

/* Reviews */
.reviews {
    padding: 80px 40px;
    text-align: center;
}

.review-boxes {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.review {
    background: #f8f8f8;
    padding: 20px;
    width: 280px;
    border-radius: 10px;
}

/* Contact */
.contact {
    padding: 80px 40px;
    background: #fff;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.contact-form button {
    background: #2E7D32;
    color: white;
    padding: 14px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

footer {
    padding: 20px;
    text-align: center;
    background: #f8f8f8;
}

