.homepage-banner-section {
        background: linear-gradient(180deg, #d9c7e5 0%, #d9c7e5 100%);
        padding: 2rem 0;
        width: 100%;
        margin: 0;
    }

    .homepage-banner-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
        text-align: center;
    }

    .homepage-banner-link {
        display: inline-block;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-radius: 12px;
    }

    .homepage-banner-link:hover {
        transform: scale(1.01);
    }

    .homepage-banner-link:hover .homepage-banner-img {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    }

    .homepage-banner-img {
        width: 100%;
        max-width: 1200px;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: box-shadow 0.3s ease;
    }

    @media (max-width: 768px) {
        .homepage-banner-section {
            padding: 0.5rem 0;
        }

        .homepage-banner-container {
            padding: 0 0.75rem;
        }

        .homepage-banner-img {
            border-radius: 8px;
        }
    }

    @media (max-width: 480px) {
        .homepage-banner-section {
            padding: 0.25rem 0;
        }

        .homepage-banner-container {
            padding: 0 0.5rem;
        }
    }
