.hero-section-widget {
    display: flex;
    align-items: center;
    background-color: #e9ecef;
    padding: 20px;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-content {
    flex: 1;
    padding-right: 20px;
}

.hero-heading {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 20px;
}

.hero-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.hero-button:hover {
    background-color: #1a252f;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.image-shape {
    width: 100%;
    max-width: 300px;
    height: auto;
    background: url('https://steam-hub.co.uk/wp-content/uploads/2025/06/shape.svg') no-repeat center;
    background-size: contain;
    position: relative;
}

.image-shape img {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-section-widget {
        flex-direction: column;
        padding: 10px;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .hero-heading {
        font-size: 1.5em;
    }

    .hero-image {
        text-align: center;
        margin-top: 20px;
    }

    .image-shape {
        max-width: 200px;
        margin: 0 auto;
    }
}