.hire-process1-container {
    background-color: #EBF4FF;
}

.hire-process1-container .wrapper {
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hire-process1-container .title {
    margin-bottom: 1rem;
}

.hire-process1-container .sub-text {
    margin-bottom: 3rem;
}

.hire-process1-container .cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 2rem;
}

.hire-process1-container.cards-space-bottom .cards-grid {
    margin-bottom: 60px;
}

.hire-process1-container .card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(29, 136, 237, 0.08);
    border: 1px solid #E0EFFF;
}

.hire-process1-container .icon-box {
    flex-shrink: 0;
    background: var(--alice-blue-1);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D3E8FF;
    border-radius: 10px;
}

.hire-process1-container .icon-box img {
    width: 30px;
    height: 30px;
}

.hire-process1-container .card-details {
    flex: 1;
}

.hire-process1-container .card-title {
    font-size: 1.175rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--polynesian-blue);
}

.hire-process1-container .card-text {
    font-size: 0.9rem;
    line-height: 1.475rem;
    margin: 0;
    color: var(--black-a80);
}

.hire-process1-container .btn-wrapper {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 1280px) {
    .hire-process1-container .cards-grid {
        gap: 18px;
    }
}

@media (max-width: 1080px) {
    .hire-process1-container .cards-grid {
        gap: 1.5rem;
    }

    .hire-process1-container.cards-space-bottom .cards-grid {
        margin-bottom: 40px;
    }

    .hire-process1-container .card {
        padding: 1.25rem;
    }

    .hire-process1-container .icon-box {
        width: 48px;
        height: 48px;
    }

    .hire-process1-container .icon-box img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 768px) {
    .hire-process1-container .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 500px) {
    .hire-process1-container .wrapper {
        padding: 0 1rem;
    }

    .hire-process1-container .card {
        padding: 1rem;
        gap: 0.85rem;
    }

    .hire-process1-container .icon-box {
        width: 46px;
        height: 46px;
    }

    .hire-process1-container .icon-box img {
        width: 26px;
        height: 26px;
    }
}