/* Styled Section */

.styled-section {
    background-color: #ffeef3;
    text-align: center;
    padding: 30px;
}

/* Main Title */

.title {
    color: darkred;
    background-color: pink;
    padding: 20px;
    border-radius: 15px;
}

/* Subtitles */
.product-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.product {
    background-color: #ffe4ec;
    padding: 15px;
    border-radius: 10px;
    width: 150px;
    text-align: center;
}
/* Paragraphs */

.text {
    color: #880e4f;
    font-size: 18px;
}

/* Product List */


.list {
    color: #ad1457;
    list-style-position: inside;
}

/* Button */

.button-style {
    background-color: hotpink;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 16px;
}

/* Hover Effect */

.button-style:hover {
    background-color: darkred;
}
