.base-product {
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}
.base-product:hover {
    transform: translateY(-10px);
}
.base-product img {
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.page-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}
.page-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #ff5722;
}
.base-product h3 {
    margin-top: 15px;
    font-size: 1.5rem;
}
.base-product p {
    color: #666;
}
.base-details {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
}
.feature-box {
    padding: 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    height: 100%;
}