body {
    font-family: 'Segoe UI', sans-serif;
    padding-top: 70px;
}

.hero-section {
    min-height: 90vh;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.hero-icon {
    font-size: 220px;
    color: #0d6efd;
    opacity: 0.15;
}

.hero-icon.small {
    font-size: 180px;
}

.service-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card i {
    font-size: 40px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    color: white;
}
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.service-card {
    transition: all 0.35s ease;
}

