.hr-plan-section {
    margin: 6rem auto;
    box-sizing: border-box;
}

.hr-plan-section .hr-plan-container{
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 6rem;
}

.hr-plan-section .hr-plan-container .info-section {
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    background: var(--oa-base-white);
    box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
}

.hr-plan-section .info-section .info-header {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.hr-plan-section .info-section .info-header h2 {
    color: var(--oa-green);
}

.hr-plan-section .info-section .info-header p {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.hr-plan-section .info-section .info-items-container {
    padding: 2rem;
}

.hr-plan-section .info-section .info-items-container p {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hr-plan-section .info-section .info-items-rows {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 2rem;
}

.hr-plan-section .info-section .info-items-column .item:not(:last-child) {
    margin-bottom: 1rem;
}

.hr-plan-section .info-section .info-items-column .item img {
    margin-right: 0.75rem;
    height: 1.5rem;
    width: 1.5rem;
}

.hr-plan-section .info-section .info-cta {
    display: flex;
    justify-content: center;
    background-color: var(--gray-50);
    padding: 2rem;
}

.hr-plan-section .info-section .info-cta .cta-button {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    width: 100%;
}

/* Desktop */
@media only screen and (max-width: 1200px) {}
@media only screen and (max-width: 992px) {}


/* Mobile */
@media only screen and (max-width: 768px) {
    .hr-plan-section .hr-plan-container{
        grid-template-columns: 2fr;
        gap: 2rem;
    }

    .hr-plan-section .info-section .info-items-rows {
        grid-template-columns: 2fr;
        gap: 1rem;
    }
}

@media only screen and (max-width: 576px) {
    .hr-plan-section {
        margin: 2rem auto;
        padding: 0 1.5rem;
    }

    .hr-plan-section .hr-plan-container .header-section {
        padding-top: 0;
    }
}
