body {
    font-family: 'Arial', sans-serif;
}
.product-image {
    width: 100%;
    height: 100%;
    max-height: 400px;
    transition: transform 0.3s;
}

.product-image:hover {
    transform: scale(1.05);
}

.product-details {
    padding: 20px;
    background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-title {
    font-size: 2rem;
    font-weight: bold;
    color: #002056;
}

.icon {
    color: #002056;
    margin-right: 2px;
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.text-muted {
    font-size: 1.1rem;
    color: #002056 !important;
    margin-bottom: 0;
}

.product-section {
    margin-bottom: 15px;
}