/* Healthcare Section Styles */
.healthcare-section {
    padding: 100px 100px;
    background-image: url('../assets/images/healthcare/Mask Group 34@2x.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}
.healthcare-section .container {
    position: relative;
    z-index: 2;
}

/* Content Styles */
.healthcare-content {
    padding-right: 40px;
    max-width: 600px;
    margin: 40px 20px;
}

.healthcare-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.healthcare-intro {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 40px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.healthcare-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Promise Cards Grid */
.healthcare-promises {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.promise-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.promise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.promise-icon {
    margin-bottom: 15px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promise-icon img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    margin: 10px 0px;
}

.promise-text {
    font-size: 0.95rem;
    color: #495057;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

/* Visual Styles - Removed since image is now background */

/* Responsive Design */
@media (max-width: 1199.98px) {
    .healthcare-content {
        padding-right: 20px;
    }
    
    .healthcare-main-title {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .healthcare-section {
        padding: 60px 0;
        background-position: center left;
    }
    
    .healthcare-content {
        padding-right: 0;
        text-align: center;
        max-width: 100%;
    }
    
    .healthcare-main-title {
        font-size: 2.5rem;
    }
    
    .healthcare-promises {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        max-width: 500px;
        margin: 0 auto 40px;
    }
    
    .promise-card {
        padding: 20px 15px;
    }
}

@media (max-width: 767.98px) {
    .healthcare-section {
        padding: 50px 0;
    }
    
    .healthcare-main-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .healthcare-intro {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .healthcare-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .healthcare-promises {
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .promise-card {
        padding: 18px 12px;
    }
    
    .promise-icon {
        height: 50px;
        margin-bottom: 12px;
    }
    
    .promise-icon img {
        max-height: 40px;
    }
    
    .promise-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .healthcare-main-title {
        font-size: 1.8rem;
    }
    
    .healthcare-intro {
        font-size: 0.95rem;
    }
    
    .promise-card {
        padding: 15px 10px;
    }
    
    .promise-text {
        font-size: 0.85rem;
    }
}