    .service-card {
      display: flex;
      align-items: center;
      gap: 48px;
      background: #fff;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      overflow: hidden;
      transition: transform .2s, box-shadow .2s;
      max-width: 900px;
      margin: 0 auto;
      padding: 25px;
    }
    
    .service-card:hover { 
      transform: translateY(-4px); 
      box-shadow: 0 12px 36px rgba(108,99,255,0.16);
    }
    
    .service-card-descr {
      background: #fff;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      overflow: hidden;
      transition: transform .2s, box-shadow .2s;
      max-width: 900px;
      margin: 0 auto;
      padding: 25px;
    }
    
    ul.tabs-ln {
      list-style: none;
      padding: 5px 5px 0px 5px;
      margin: 15px 0px 10px 0px;
      overflow: hidden;
      position: relative;
    }
    
    ul.tabs-ln::before {
      position: absolute;
      content: " ";
      width: 100%;
      bottom: 0;
      left: 0;
      border-bottom: 1px solid #cfc8d8;
      z-index: 1;
    }

    li.description_tab_ln {
      border: 1px solid #cfc8d8;
      background-color: #e9e6ed;
      color: #515151;
      display: inline-block;
      position: relative;
      z-index: 0;
      border-radius: 4px 4px 0 0;
      margin: 0px;
      padding: 5px 15px 5px 15px;
	  border-bottom-color: #fff;
	  font-weight: 700;
    }

    .service-card-descr:hover { 
        transform: translateY(-4px); 
        box-shadow: 0 12px 36px rgba(108,99,255,0.16);
    }

    .service-card img {
      width: 340px;
      min-width: 340px;
      height: 260px;
      object-fit: cover;
      flex-shrink: 0;
    }

    .service-card-body {
      padding: 36px 36px 36px 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
	
	.service-card-body p {
      font-size: 0.97rem;
      color: var(--text-light);
      line-height: 1.65;
    }
    
    .btn-card {
      display: inline-block;
      background: var(--accent-color);
      color: var(--white);
      padding: 13px 28px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.95rem;
      text-align: center;
      transition: background .2s, transform .15s;
      width: fit-content;
    }

    .btn-card:hover { background: var(--primary-dark); transform: translateY(-1px); }
    
    .service-card-body h3 {
      font-size: 1.45rem;
      font-weight: 800;
      line-height: 1.25;
    }

    .service-card-body p {
      font-size: 0.97rem;
      color: var(--text-light);
      line-height: 1.65;
    }

    .service-price {
      font-size: 1.5rem;
      font-weight: 800;
      color: #7dcd02;
    }
	
	@media (max-width: 700px) {
      .service-card { flex-direction: column; }
      .service-card img { width: 100%; min-width: unset; height: 200px; }
      .service-card-body { padding: 24px; }
      .service-card-descr { padding: 24px; }
    }