  .service-accordion-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .service-accordion-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .service-block-style11 {
        background: #ffffff;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: all 0.3s ease;
        border: 1px solid #f0f0f0;
    }

    .service-block-style11:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    .service-content {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 3.2em;
}


    .acc-header {
        position: relative;
    }

    .acc-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 5px 30px;
        cursor: pointer;
        background: linear-gradient(135deg, #667eea 0%, #011245 100%);
        color: white;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .acc-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }

    .acc-btn:hover::before {
        left: 100%;
    }

    .acc-btn:hover {
        background: linear-gradient(135deg, #5a6fd8 0%, #2c60fa 100%);
    }

    .content-box {
        display: flex;
        align-items: center;
        gap: 20px;
        flex: 1;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        backdrop-filter: blur(10px);
    }

    .service-icon i {
        font-size: 28px;
        color: white;
    }

    .service-icon img {
        width: 40px;
        height: 40px;
        object-fit: cover;
        border-radius: 8px;
    }

    .title-wrapper h4 {
        margin: 0;
        font-size: 22px;
        font-weight: 600;
        color: white;
        line-height: 1.3;
    }

    .title-wrapper h5 {
        margin: 5px 0 0 0;
        font-size: 14px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.2;
    }

    .number {
        font-size: 24px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.9);
        background: rgba(255, 255, 255, 0.2);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(10px);
    }

    .acc-collapse {
        background: #f8f9fa;
        border-top: 1px solid #e9ecef;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .acc-body {
        padding: 30px;
    }

    .service-content {
        margin-bottom: 20px;
    }

    .service-content p {
        margin: 0;
        font-size: 16px;
        line-height: 1.6;
        color: #666;
    }

    .service-image {
        margin-bottom: 20px;
    }

    .service-image img {
        width: 100%;
        max-width: 300px;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .service-block-style11.active .acc-btn {
        background: linear-gradient(135deg, #ffb400 0%, #ff7800 100%);
    }

    .service-block-style11.active {
        border-color: #28a745;
    }

    @media (max-width: 768px) {
        .service-accordion-container {
            padding: 15px;
        }

        .acc-btn {
            padding: 20px;
        }

        .content-box {
            gap: 15px;
        }

        .service-icon {
            width: 50px;
            height: 50px;
        }

        .service-icon i {
            font-size: 24px;
        }

        .title-wrapper h4 {
            font-size: 18px;
        }

        .number {
            width: 40px;
            height: 40px;
            font-size: 20px;
        }

        .acc-body {
            padding: 20px;
        }
    }