.hf-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    font-family: inherit;
    width: 100%;
}

.hf-header {
    text-align: center;
    max-width: 800px;
}

.hf-subtitle {
    color: #a3d75a;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.hf-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.hf-middle {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.hf-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
    min-width: 250px;
}

.hf-col-center {
    flex: 0 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: -15px 15px 0px 0px #8eb94a;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 300px;
}

.hf-center-img {
    max-width: 100%;
    height: auto;
}

.hf-feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hf-left-item {
    text-align: right;
    justify-content: flex-end;
}

.hf-right-item {
    text-align: left;
    justify-content: flex-start;
}

.hf-feature-text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

.hf-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #8eb94a;
    color: #1a362a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.hf-feature-icon svg {
    fill: #1a362a;
    width: 20px;
    height: 20px;
}

.hf-footer {
    margin-top: 20px;
}

.hf-button {
    background-color: #a3d75a;
    color: #1a362a;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.hf-button:hover {
    background-color: #8eb94a;
    color: #1a362a;
}

/* Responsive */
@media (max-width: 768px) {
    .hf-middle {
        flex-direction: column;
    }
    .hf-col-left, .hf-col-right {
        order: 2;
    }
    .hf-col-center {
        order: 1;
        margin-bottom: 30px;
    }
    .hf-left-item {
        text-align: center;
        flex-direction: column-reverse;
        justify-content: center;
    }
    .hf-right-item {
        text-align: center;
        flex-direction: column;
        justify-content: center;
    }
}