/* 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 */

.subtitle {
    color: #c2185b;
}

/* 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;
}