body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

header {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

.slider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 20px 0;
}

.slides {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.slide {
    position: relative;
    text-align: center;
}

.slides img {
    max-width: 100%;
    display: block;
    border-radius: 8px;
}

.style-title {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: #8a2be2; /* Фіолетовий колір */
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    text-decoration: underline;
}

button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.order-form, .comments {
    margin: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
}

.order-form input, #commentInput {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#submitComment {
    margin-top: 10px;
}
