body {
    background-color: white;
    font-family: Arial, sans-serif;
    padding: 20px;
}

.back-btn {
    font-size: 24px;
    color: white;
    background-color: #c53945;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: absolute;
    top: 20px;
    left: 20px;
}

.container-logo {
    position: absolute;
    top: 20px;
    right: 20px;
}

.title {
    text-align: center;
    margin-top: 80px;
    font-weight: bold;
    font-size: 22px;
}

.style-option {
    border: 2px solid #cc0000;
    border-radius: 20px;
    overflow: hidden;
    margin: 30px auto;
    max-width: 600px;
    cursor: pointer;
    transition: transform 0.2s;
}

.style-option:hover {
    transform: scale(1.02);
}

.style-option img {
    width: 100%;
    height: auto;
    display: block;
}
