 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            background-color: #f9f9f9;
            padding-bottom: 70px; 
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        ul {
            list-style: none;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        .container {
            width: 100%;
            padding: 0 10px;
            margin: 0 auto;
        }
        
        
        :root {
            --primary-color: #2ecc71;
            --secondary-color: #27ae60;
            --dark-green: #219653;
            --light-green: #e8f5e9;
            --text-color: #333;
            --light-gray: #f5f5f5;
            --white: #ffffff;
        }
        
        
        .header {
            background-color: var(--primary-color);
            color: white;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        
        .logo {
            font-size: 18px;
            font-weight: bold;
        }
        
        
        .mobile-phone {
            display: none;
            font-size: 16px;
            font-weight: bold;
        }
        
        .phone-number {
            font-size: 14px;
            margin-right: 15px;
            display: none;
        }
        
        .menu-toggle {
            font-size: 20px;
            cursor: pointer;
            position: relative;
            z-index: 1002;
        }
        
        
        .desktop-nav {
            display: none;
        }
        
        
        .nav-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            width: 200px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            border-radius: 4px;
            display: none;
            z-index: 1001;
        }
        
        .nav-menu.active {
            display: block;
        }
        
        .nav-menu ul {
            padding: 10px 0;
        }
        
        .nav-menu li {
            padding: 10px 20px;
            border-bottom: 1px solid #eee;
        }
        
        .nav-menu li:last-child {
            border-bottom: none;
        }
        
        .nav-menu a {
            color: #333;
            display: block;
        }
        
        .nav-menu a:hover {
            color: var(--primary-color);
        }
        
       
        .slider {
            position: relative;
            overflow: hidden;
            height: 200px;
            margin: 10px 0;
            border-radius: 12px; 
        }
        
        .slides {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
        }
        
        .slide {
            min-width: 100%;
            height: 100%;
        }
        
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        
        .section-title {
            text-align: center;
            padding: 15px 0;
            color: var(--dark-green);
            font-size: 18px;
        }
        
        
        .main-title {
            background-color: var(--light-green);
            padding: 12px 15px;
            text-align: center;
            margin: 10px 0;
            border-radius: 5px;
            font-size: 16px;
            font-weight: bold;
            color: var(--dark-green);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        
        .service-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            padding: 15px 0;
        }
        
        .service-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 33.33%;
            margin-bottom: 15px;
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 8px;
            background-color: var(--light-green);
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .service-icon img {
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
        }
        
        .service-name {
            font-size: 12px;
            text-align: center;
        }
        
        
        .scrolling-text {
            background-color: var(--secondary-color);
            color: white;
            padding: 10px;
            margin: 10px 0;
            overflow: hidden;
            white-space: nowrap;
        }
        
        .scrolling-text p {
            display: inline-block;
            padding-left: 100%;
            animation: scroll 15s linear infinite;
        }
        
        @keyframes scroll {
            0% { transform: translate(0, 0); }
            100% { transform: translate(-100%, 0); }
        }
        
        
        .feature-image {
            margin: 15px 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        
     .feature-image img {
            width: 100%;
            height: auto;
        }

        .services {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin: 15px 0;
        }
        
        .service-card {
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        
        .service-card img {
            width: 100%;
            object-fit: cover;
        }
        
        .service-content {
            padding: 10px;
        }
        
        .service-content h3 {
            font-size: 14px;
            color: var(--dark-green);
            margin-bottom: 5px;
            text-align: center;
        }
        
        .service-content p {
            font-size: 12px;
            color: #666;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        
        .advantages {
            margin: 20px 0;
        }
        
        .advantage-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .advantage-item {
            background: var(--white);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .advantage-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 15px;
        }
        
        .advantage-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        
        .advantage-item h3 {
            color: var(--dark-green);
            font-size: 16px;
            margin-bottom: 8px;
        }
        
        .advantage-item p {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            font-size: 14px;
            color: #666;
        }
        
        
        .hospitals {
            margin: 20px 0;
        }
        
        .hospital-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-top: 15px;
        }
        
        .hospital-item {
            background: var(--white);
            padding: 10px 5px;
            text-align: center;
            border-radius: 5px;
            font-size: 12px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
       
        .articles {
            margin: 20px 0;
        }
        
        .article-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .article-item {
            display: flex;
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        
        .article-thumb {
            width: 25%;
            flex-shrink: 0;
        }
        
        .article-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .article-content {
            width: 55%;
            padding: 10px;
        }
        
        .article-title {
            font-size: 14px;
            margin-bottom: 5px;
            color: var(--text-color);
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .article-excerpt {
            font-size: 12px;
            color: #8ab711;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .article-date {
            width: 20%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: var(--light-green);
            padding: 5px;
        }
        
        .article-day {
    font-size: 1.6em;
    font-weight: bolder;
    color: var(--dark-green);
        }
        
        .article-month {
            font-size: 12px;
            color: var(--secondary-color);
        }
    


.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-thumb:hover img {
    transform: scale(1.05);
}

.article-title a {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: var(--primary-color);
}


.article-day, .article-month {
    line-height: 1.2;
    text-align: center;
}


@media (max-width: 767px) {
    .article-thumb {
        width: 30%; 
    }
    
    .article-content {
        width: 50%; 
      padding: 10px 5px;
    }
    
    .article-date {
        width: 20%; 
    }
}



    
       
        .faq {
            margin: 20px 0;
        }
        
        .faq-item {
            background: var(--white);
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        
        .faq-question {
            padding: 15px;
            background: var(--primary-color);
            color: white;
            font-weight: bold;
            cursor: pointer;
            position: relative;
        }
        
        .faq-answer {
            padding: 15px;
            display: none;
            font-size: 13px;
          text-indent: 2em;
          color: #333;
          line-height: 1.8em;
        }
        
        .faq-active .faq-answer {
            display: block;
        }
        
        
        .caregivers {
            margin: 20px 0;
        }
        
        .caregiver-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .caregiver-item {
            display: flex;
            background: var(--white);
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        
        .caregiver-left {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-right: 15px;
            width: 90px;
            flex-shrink: 0;
        }
        
        .caregiver-image {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 8px;
        }
        
        .caregiver-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .caregiver-position {
    text-align: center;
    font-size: 12px;
    color: #7ac20e;
    font-weight: 800;
    border: 2px solid #00c0ff;
    border-radius: 10px;
    padding: 0 10px;
        }
        
        .caregiver-info {
            flex: 1;
        }
        
        
        .caregiver-name {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 8px;
            flex-wrap: wrap;
        }
        
        .caregiver-name h3 {
            font-size: 16px;
            color: var(--text-color);
            margin-right: 8px;
        }
        
        .caregiver-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
        }
        
        .badge {
            font-size: 10px;
            padding: 2px 6px;
            background: var(--light-green);
            color: #fc3807;
            border-radius: 10px;
        }
        
        .caregiver-desc {
            font-size: 13px;
            color: 666;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        
        .booking-methods {
            margin: 20px 0;
        }
        
        .booking-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .booking-item {
            background: var(--white);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .booking-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .booking-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        
        .booking-item h3 {
            color: var(--dark-green);
            font-size: 16px;
            margin-bottom: 8px;
        }
        
        
        .booking-item p {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            font-size: 13px;
            color: #666;
        }
        
        
        .testimonials {
            margin: 20px 0;
        }
        
        .testimonial-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .testimonial-item {
            background: var(--white);
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        
        .testimonial-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
            flex-wrap: wrap;
        }
        
        .testimonial-user {
            display: flex;
            align-items: center;
        }
        
        .testimonial-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 10px;
        }
        
        .testimonial-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .testimonial-name {
            font-weight: bold;
        }
        
        .testimonial-badge {
            font-size: 10px;
            padding: 2px 6px;
            background: #fa022c;
            color: #f8f80d;
            border-radius: 10px;
        }
        
        .testimonial-content {
            font-size: 13px;
            color: #666;
        }
        
        
        .footer {
            background-color: var(--dark-green);
            color: white;
            padding: 15px 0;
            position: fixed;
            bottom: 0;
            width: 100%;
            z-index: 1000;
        }
        
        .footer-buttons {
            display: flex;
            justify-content: space-around;
        }
        
        .footer-button {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 45%;
            padding: 12px 0;
            background-color: var(--primary-color);
            border-radius: 5px;
            font-weight: bold;
        }
        
        
        @media (min-width: 768px) {
            .container {
                max-width: 1200px;
                padding: 0 15px; 
            }
            
            .phone-number {
                display: none; 
            }
            
            .menu-toggle {
                display: none;
            }
            
            .desktop-nav {
                display: flex;
                justify-content: space-around;
                flex: 1;
                max-width: 1200px;
                margin: 0 auto;
                flex-wrap: wrap;
            }
            
            .desktop-nav a {
                color: white;
                font-size: 18px;
                padding: 0 15px;
                font-weight: bold;
            }
            
            .desktop-nav a:hover {
                text-decoration: underline;
            }
            
            .nav-menu {
                display: none !important;
            }
            
            .slider {
                height: 400px;
            }
            
            
            .main-title {
                font-size: 20px;
                padding: 15px;
            }
            
            .service-item {
                width: 16.66%;
            }
            
            .service-icon {
                width: 80px;
                height: 80px;
            }
            
            .service-name {
                font-size: 14px;
            }
            
            .advantages .advantage-list {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .advantage-item {
                padding: 20px 15px;
            }
            
            .hospital-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .booking-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            
            .article-list {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .article-item {
                flex-direction: column;
                height: auto;
            }
            
            .article-thumb {
                width: 100%;
            }
            
            .article-content {
                width: 100%;
                padding: 15px;
            }
            
            .article-date {
                width: 100%;
                flex-direction: row;
                justify-content: space-between;
                padding: 10px 15px;
            }
            
            .article-title {
                font-size: 16px;
                -webkit-line-clamp: 2;
                height: 48px;
                margin-bottom: 10px;
            }
            
            .article-excerpt {
                font-size: 14px;
                -webkit-line-clamp: 3;
                height: 63px;
            }
            
            .caregiver-list,
            .testimonial-list {
                flex-direction: row;
                flex-wrap: wrap;
            }
            
            .caregiver-item,
            .testimonial-item {
                width: calc(50% - 10px);
            }
            
            .footer-button {
                width: 200px;
            }
            
           
            .desktop-footer {
                display: block;
                background-color: var(--dark-green);
                color: white;
                padding: 40px 0 20px;
                position: relative;
                bottom: auto;
            }
            
            .footer-content {
                display: flex;
                justify-content: space-between;
                flex-wrap: wrap;
                margin-bottom: 20px;
            }
            
            .footer-about {
                width: 48%;
            }
            
            .footer-contact {
                width: 48%;
            }
            
            .footer-section h3 {
                font-size: 18px;
                margin-bottom: 15px;
                border-bottom: 1px solid rgba(255,255,255,0.2);
                padding-bottom: 5px;
            }
            
            .footer-about p {
                font-size: 14px;
                line-height: 1.6;
                margin-bottom: 15px;
            }
            
            .footer-contact ul li {
                margin-bottom: 10px;
                font-size: 14px;
            }
            
            .footer-bottom {
                text-align: center;
                padding-top: 15px;
                border-top: 1px solid rgba(255,255,255,0.2);
                font-size: 12px;
            }
            
            .mobile-footer {
                display: none;
            }
        }
        
        
        @media (max-width: 767px) {
            .desktop-footer {
                display: none;
            }
            
            .mobile-footer {
                display: block;
            }
            
            
            .nav-container {
                display: grid;
                grid-template-columns: 1fr auto 1fr;
                align-items: center;
            }
            
            .logo {
                justify-self: start;
            }
            
           
            .mobile-phone {
                display: block;
                justify-self: center;
                font-size: 16px;
                font-weight: bold;
            }
            
            .menu-toggle {
                justify-self: end;
            }
            
          
            .container {
                padding: 0 10px;
            }
            
            .service-nav {
                justify-content: space-between;
            }
            
            .service-item {
                width: 30%;
            }
            
            .services {
                gap: 10px;
            }
            
            .advantage-list {
                gap: 10px;
            }
            
            .hospital-grid {
                gap: 8px;
            }
            
            .booking-grid {
                gap: 10px;
            }
            
            
            .caregiver-name {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }
            
            .caregiver-badges {
                margin-top: 0;
                margin-left: 8px;
            }
        }