body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8fafc;
}
.hero-pattern {
    background: linear-gradient(rgba(30, 64, 175, 0.85), rgba(30, 64, 175, 0.9)), url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80');
    background-size: cover;
    background-position: center;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.feature-icon {
    background-color: #dbeafe;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.testimonial-card {
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    transform: scale(1.03);
}
.btn-primary {
    background: linear-gradient(to right, #1e40af, #3b82f6);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background: linear-gradient(to right, #3b82f6, #1e40af);
    transform: translateY(-2px);
}
.btn-secondary {
    background: linear-gradient(to right, #f97316, #ea580c);
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background: linear-gradient(to right, #ea580c, #f97316);
    transform: translateY(-2px);
}