:root {
    --primary: #304b6c;
    --primary-dark: #243c59;
    --secondary: #b89455;
    --light-bg: #f5f6f8;
    --white: #ffffff;
    --text-color: #384654;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: var(--light-bg);
}

.nursing-care-section {
    padding: 80px 0;
    /*background: linear-gradient(135deg, #fafafa 0%, #f1f2f4 100%);*/
}

/* Section Header */

.section-header {
    max-width: 900px;
    margin-bottom: 45px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.section-tag i {
    font-size: 17px;
}

.section-header h1 {
    color: var(--primary);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 18px;
}

.title-line {
    width: 65px;
    height: 3px;
    background: var(--secondary);
    border-radius: 10px;
    margin-bottom: 22px;
}

.section-header p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
}



/* Featured Card */

.featured-card {
    background: linear-gradient(135deg, #304b6c, #3b597c);
}

.featured-card h5,
.featured-card p {
    color: #ffffff;
}

.featured-card .service-icon {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.featured-card .card-number {
    color: rgba(255, 255, 255, 0.4);
}

.featured-card:hover .service-icon {
    background: var(--secondary);
}

/* Responsive */

@media (max-width: 991px) {
    .section-header h1 {
        font-size: 32px;
    }

    .nursing-card {
        min-height: 235px;
    }
}

@media (max-width: 767px) {
    .nursing-care-section {
        padding: 55px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h1 {
        font-size: 28px;
        line-height: 1.35;
    }

    .section-header p {
        font-size: 15px;
    }

    .nursing-card {
        min-height: auto;
        padding: 25px;
    }
}