   
.product-details {
    text-align: center;
    padding: 20px;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin: 20px;
}

.small-category {
    background-color: #4caf50; 
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 10px;
}

.product-name {
    font-size: 24px;
    margin: 10px 0;
}

.product-image {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.product-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
    max-width: 50%;
    margin: 0 auto; /* Center the text horizontally */
    margin-bottom: 20px;
}

.cool-features {
    margin-bottom: 20px;
    border: 1px solid #f3e8d4; 
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    width: 50%;
    margin: 0 auto;
}

.cool-features h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.cool-features ul {
    list-style: none;
    padding: 0;
}

.cool-features li {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.action-buttons {
    display: flex;
    justify-content: center;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.demo-button {
    background-color: #ffcc00; 
    color: #333;
    margin-right: 10px;
}

.download-button {
    background-color: #4caf50; 
    color: #fff;
}
 @media (max-width: 768px) {
      .product-description {
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 20px;
}
.cool-features {
    border: none; 
    width: 100%;
}
    }

    .see-more-link {
        display: inline-block;
        margin-top: 20px;
        font-size: 18px; 
        color: #27ae60; 
        text-decoration: none;
        border: 1px solid #27ae60; 
        padding: 8px 12px;
        border-radius: 5px; 
        font-weight: bold; 
    }