.hero {
        position: relative; /* Widget'ı konumlandırmak için gereklidir */
    }
    .hero-widget-container {
        position: absolute;
        bottom: 60px; /* Alttan boşluk */
        left: 50%;
        transform: translateX(-50%);
        z-index: 15; /* Carousel kontrollerinin üzerinde olmasını sağlar */
        text-align: center;
    }
    .hero-widget-button {
        display: inline-block;
        background-color: rgba(255, 255, 255, 0.9); /* Hafif şeffaf beyaz */
        backdrop-filter: blur(5px); /* Arka planı bulanıklaştırır */
        color: #8B4513; /* Kahverengiye yakın bir ton */
        padding: 1rem 2.5rem;
        border-radius: 50px;
        font-weight: 700; /* Daha kalın yazı */
        font-size: 1.1rem;
        text-decoration: none;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        border: 1px solid rgba(0,0,0,0.05);
    }
    .hero-widget-button:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        background-color: white;
    }

    /* Mobil cihazlar için widget boyutunu ayarla */
    @media (max-width: 768px) {
        .hero-widget-container {
            bottom: 30px;
            width: 90%;
        }
        .hero-widget-button {
            padding: 0.8rem 1.5rem;
            font-size: 1rem;
        }
    }