/* CSS styles for the hero banner */
.hero-banner {
    background-color: #f5f5f5;
    text-align: center;
    padding: 50px 0;
}

.hero-banner h1 {
    font-size: 3em;
    margin: 0;
}

.hero-banner p {
    font-size: 1.5em;
    margin: 10px 0 0;
}

/* CSS styles for the introduction section */
.introduction {
    background-color: #ffffff;
    text-align: center;
    padding: 50px 0;
}

.introduction h2 {
    font-size: 2.5em;
    margin: 0;
}

.introduction p {
    font-size: 1.2em;
    margin: 10px 0 0;
}

/* CSS styles for the product sections */
.product {
    background-color: #f5f5f5;
    text-align: center;
    padding: 50px 0;
}

.product h2 {
    font-size: 2.5em;
    margin: 0;
}

.product p {
    font-size: 1.2em;
    margin: 10px 0 0;
}

/* CSS styles for the gallery carousel */
.gallery-carousel {
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    margin: 20px 0;
}

.carousel-item {
    flex: 0 0 auto;
    width: 300px;
    margin: 0 10px;
}

.carousel-item img {
    width: 100%;
    height: auto;
}

/* CSS styles for the PayPal button */
.paypal-button {
    background-color: #0070ba;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 1.2em;
    cursor: pointer;
    margin-top: 20px;
}

.paypal-button:hover {
    background-color: #005ea6;
}
