    .hero-section {
        background: linear-gradient(135deg, rgba(47, 44, 44, 0.286) 0%, rgba(242, 164, 7, 0.9) 100%);
        background-size: cover;
        background-position: center;
        color: white;
        padding: 150px 0;
        text-align: center;
    }
    .hero-buttons .btn {
        margin: 0 10px;
        padding: 12px 30px;
        font-weight: 600;
    }
    .service-home-card {
        border: none;
        border-radius: 15px;
        transition: all 0.3s ease;
        padding: 30px 20px;
        text-align: center;
        height: 100%;
    }
    .service-home-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    .service-home-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #cec7c7, #35ed06);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
    }
    .service-home-icon i {
        font-size: 1.8rem;
        color: white;
    }
    .team-home-card {
        text-align: center;
        padding: 20px;
        border-radius: 15px;
        transition: all 0.3s ease;
    }
    .team-home-card:hover {
        transform: scale(1.05);
    }
    .team-home-img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 auto 15px;
        border: 4px solid #28a745;
    }
    .cta-section {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 80px 0;
        text-align: center;
    }