    .hero-section {
        position: relative;
        width: 100%;
        height: 60vh;
        background: url('background.png') no-repeat center center/cover;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        padding: 20px;
    }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    }

    .content {
        position: relative;
        z-index: 2;
    }

    .feature-card {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
    }

    .feature-card:hover {
        transform: translateY(-5px);
    }

    @media (max-width: 768px) {
        .hero-section {
            height: 50vh;
            padding: 15px;
        }

        .buttons button {
            width: 100%;
            margin-bottom: 10px;
        }
    }