body { font-family: 'Segoe UI', sans-serif; }

/* Gradient Hero */
.hero {
    background: linear-gradient(135deg, #4e73df, #1cc88a);
    color: #fff;
    padding: 100px 0;
}

/* Cards */
.card {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.card-custom {
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.card-custom:hover {
    transform: translateY(-8px);
}

/* Sections */
.section { padding: 80px 0; }

/* Buttons */
.btn-primary {
    background: #4e73df;
    border: none;
}
.btn-primary:hover {
    background: #2e59d9;
}

/* Feature icons */
.icon-box {
    font-size: 40px;
    margin-bottom: 15px;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #1cc88a, #36b9cc);
    color: white;
    padding: 60px 0;
}