.About{
    border: 1px solid #9d7482;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 30px;
}
.About__Title{
    font-size: 2.4rem;
    color: #ff6473;
    padding-bottom: 10px;
}


.Product{
    margin-bottom: 50px;
}
.Product__Header{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-bottom: 10px;
}
.Product__Description{
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff6473;
}
.Product__Image{
    text-align: center;
}
.Product__Image > img{
    width: 50%;
}
.Product__PriceTable{
    border-collapse: collapse;
    width: 100%;
}
.Product__PriceTable *{
    color: black;
    font-size: 1.5rem;
    text-align: center;
}
.Product__PriceTable tbody > tr:nth-child(even){
    background-color: #f0f0f0;
}
.Product__PriceTable th, .Product__PriceTable td{
    border: 1px solid #ddd;
    padding: 10px;
}
.Product__PriceTable th:first-child{
    background-image: linear-gradient(to left bottom, transparent 49%, #ddd 0, #ddd 50%, transparent 0, transparent);
}