.hero-banner {
    background: var(--primary-colour);
    background: linear-gradient(153deg, rgba(55, 209, 212, 1) 0%, rgba(33, 72, 156, 1) 35%, rgba(5, 5, 38, 1) 100%);
}

.hero-content {
    display: flex;
    align-items: center; /* Vertically centers text and image */
    justify-content: space-between;
    gap: 60px;
    padding-top: 40px;
    
}
.hero-text, .hero-image {
    flex: 1; 
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--white);
}

.hero-text p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--white);
}

.hero-image {
    display: flex;
    justify-content: right;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 400px;
}

@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column; /* Stacks image under text on mobile */
        text-align: center;
    }
}