.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.header-wrapper > div {
    flex: 1 1 0;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
}

.header-content strong {
    font-weight: 600;
}

.header-content p {
    margin: 0;
    padding: 0;
}

.header-content .heading {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.header-content .title {
    font-size: 58px;
    font-weight: 600;
    color: #AD3275;
    line-height: 1 !important;
}

.header-content .subtitle {
    font-size: 38px;
    font-weight: 300;
    line-height: normal;
}

.header-content .subtitle span,
.header-content .subtitle strong {
    color: #AD3275;
    font-weight: 700;
}

.header-content .content p {
    font-size: 28px;
    font-weight: 600;
}

.header-content .list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.header-content .list div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-content .list p {
    font-size: 28px;
    font-weight: 300;
    line-height: normal;
    margin: 0;
    padding: 0;
}

.header-content .list p strong {
    color: #AD3275;
    font-weight: 600;
}

.header-featured {
    width: 100%;
    max-width: 454px;
    height: auto;
}

.header-featured img {
    width: 100%;
    height: 100%;
}


@media (max-width: 1280px) {
    .header-wrapper {
        gap: 50px;
    }

    .header-content {
        width: 100%;
        gap: 30px;
    }

    .header-content .title {
        font-size: 36px;
    }

    .header-content .subtitle {
        font-size: 24px;
    }

    .header-content .content p,
    .header-content .list p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .header-featured {
        width: auto;
        max-height: 200px;
    }

    .header-content .title {
        font-size: 32px;
    }

    .header-content .subtitle {
        font-size: 20px;
    }

    .header-content .content p,
    .header-content .list p {
        font-size: 16px;
    }

    .header-wrapper {
        gap: 30px;
        flex-direction: column;
    }

    .header-wrapper .button {
        width: 100%;
        align-items: center;
        justify-content: center;
    }
}