.rh-section {
    padding: 40px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', Arial, sans-serif;
    text-align: center;
}

.rh-container {
    max-width: 1200px;
    margin: 0 auto;
}

.rh-title {
    color: var(--color-secondary, #0096d7); 
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.rh-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.rh-card__image-wrapper {
    position: relative;
    width: 100%;
}

.rh-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rh-card__label {
    position: absolute;
    bottom: 40px;
    left: 0;
    background-color: var(--color-secondary, #0096d7);
    color: #ffffff;
    padding: 10px 25px;
    font-size: 24px;
    font-weight: 400;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .rh-title {
        font-size: 24px;
    }
    
    .rh-card__label {
        font-size: 18px;
        bottom: 15px;
    }
}