.what-you-get-section .what-you-get-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    justify-items: center;
}
.what-you-get-section .wyg-box {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
    max-width: 500px;
}
.what-you-get-section .wyg-box .icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--light-orange);
    margin-bottom: 20px;
}
.what-you-get-section .wyg-box .icon-box img {
    max-width: 40px;
    max-height: 40px;
    width: auto;
    height: auto;
}
.what-you-get-section .wyg-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--title-color);
    line-height: 1.3;
    margin: 0;
}
.what-you-get-section .wyg-box p {
    margin-top: 10px;
    font-size: 16px;
    color: var(--body-color);
    line-height: 1.5;
}

/* Background Color Options */
.what-you-get-section.bg-white-bg {
    background-color: var(--white-color);
}
.what-you-get-section.bg-dark-bg {
    background-color: var(--title-color);
}
.what-you-get-section.bg-dark-bg .wyg-box h4,
.what-you-get-section.bg-dark-bg .section-header h2 {
    color: var(--white-color);
}
.what-you-get-section.bg-dark-bg .wyg-box p {
    color: var(--white-color);
}
.what-you-get-section.bg-dark-bg .wyg-box .icon-box {
    background: var(--body-color);
}


/* Responsive Styles */
@media (min-width: 1200px) and (max-width: 1499px) {
    .what-you-get-section .what-you-get-wrap {
        gap: 24px;
    }
    .what-you-get-section .wyg-box .icon-box {
        width: 70px;
        height: 70px;
        margin-bottom: 16px;
    }
    .what-you-get-section .wyg-box .icon-box img {
        max-width: 36px;
        max-height: 36px;
    }
    .what-you-get-section .wyg-box h4 {
        font-size: 16px;
    }
    .what-you-get-section .wyg-box p {
        font-size: 14px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .what-you-get-section .what-you-get-wrap {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    .what-you-get-section .wyg-box .icon-box {
        width: 70px;
        height: 70px;
        margin-bottom: 16px;
    }
    .what-you-get-section .wyg-box .icon-box img {
        max-width: 36px;
        max-height: 36px;
    }
    .what-you-get-section .wyg-box h4 {
        font-size: 16px;
    }
    .what-you-get-section .wyg-box p {
        font-size: 14px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .what-you-get-section .what-you-get-wrap {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    .what-you-get-section .wyg-box .icon-box {
        width: 64px;
        height: 64px;
        margin-bottom: 14px;
    }
    .what-you-get-section .wyg-box .icon-box img {
        max-width: 32px;
        max-height: 32px;
    }
    .what-you-get-section .wyg-box h4 {
        font-size: 16px;
    }
    .what-you-get-section .wyg-box p {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .what-you-get-section .what-you-get-wrap {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .what-you-get-section .wyg-box .icon-box {
        width: 64px;
        height: 64px;
        margin-bottom: 12px;
    }
    .what-you-get-section .wyg-box .icon-box img {
        max-width: 32px;
        max-height: 32px;
    }
    .what-you-get-section .wyg-box h4 {
        font-size: 16px;
    }
    .what-you-get-section .wyg-box p {
        font-size: 14px;
        margin-top: 8px;
    }
}