
.product-highlights {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #2a9d8f;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.product-highlights h3 {
    color: #2a9d8f;
    margin-bottom: 15px;
    font-size: 22px;
}
.product-highlights ul {
    list-style-type: none;
    padding-left: 0;
}
.product-highlights li {
    padding: 8px 0;
    border-bottom: 1px dashed #dee2e6;
    font-size: 16px;
}
.product-highlights li:last-child {
    border-bottom: none;
}
.product-highlights .checkmark {
    color: #2a9d8f;
    margin-right: 10px;
    font-weight: bold;
}
.cta-button {
    display: inline-block;
    background: linear-gradient(to right, #2a9d8f, #1e7d74);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
}
.cta-button:hover {
    background: linear-gradient(to right, #1e7d74, #2a9d8f);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 157, 143, 0.3);
}
