.ae-subpage-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    color: #fff;
    overflow: hidden;
}

.ae-subpage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ae-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.ae-hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ae-hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.ae-hero-btn {
    align-self: flex-start;
}

/* Center alignment handling */
.ae-subpage-hero[style*="text-align: center"] .ae-hero-btn {
    align-self: center;
}

/* Right alignment handling */
.ae-subpage-hero[style*="text-align: right"] .ae-hero-btn {
    align-self: flex-end;
}

@media (max-width: 768px) {
    .ae-hero-title {
        font-size: 38px;
    }
    .ae-hero-description {
        font-size: 18px;
    }
}
