.container-RECRUITMENT {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
}

.content {
    flex: 1;
}

.image-section {
    flex: 1;
    min-width: 300px;
}

.category {
    color: #28608f; /* Changed to a vibrant color for emphasis */
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
}

.title {
    font-size: 42px;
    font-weight: 700;
    color: #132D55; /* Darker color for better contrast */
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #28608f;
    position: absolute;
    bottom: -10px;
    left: 0;
}

.description {
    color: #666;
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
}

.stat-card {
    background-color: #132D55;
    color: white;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.stat-title {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 18px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin: 20px 0;
    color: #28608f;
}

.stat-description {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
}

.impact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.impact-image:hover {
    transform: scale(1.02);
}

@media (max-width: 968px) {
    .container-RECRUITMENT {
        flex-direction: column;
    }

    .content {
        order: 1;
    }

    .image-section {
        order: 2;
    }

    .title {
        font-size: 32px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .description {
        font-size: 16px;
    }
}