/* Your base CSS styles */

/* Hero section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

/* Features section */
.features {
    padding: 50px;
}

.feature {
    text-align: center;
    margin-bottom: 50px;
}

/* Gallery section */
.gallery {
    padding: 50px;
}

.image-gallery {
    display: flex;
    justify-content: space-between;
}

.image-gallery img {
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* CTA section */
.cta {
    text-align: center;
    padding: 50px;
    background-color: #f8f9fa;
}

/* Buttons */
.buy-now {
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}