 .hero-wrapper {
     position: relative;
     width: 100%;
     height: 100vh;
     min-height: 600px;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .hero-background {
     position: absolute;
     inset: 0;
     background-image: url('..//img/zHApSjW81K.jpg');
     background-size: cover;
     background-position: center;
     z-index: 1;
     filter: brightness(0.4);
 }

 .uikIANs0K3 {
     position: relative;
     z-index: 2;
     color: #fff;
     max-width: 1200px;
     padding: 2rem;
     text-align: center;
 }

 .uikIANs0K3 h1 {
     color: #eee;
     font-size: 2.2rem;
     font-weight: 700;
     margin-bottom: 1rem;
 }

 .uikIANs0K3 h2 {
     color: #eee;
     font-size: 1.5rem;
     margin-bottom: 1.5rem;
     font-weight: 600;
 }

 .uikIANs0K3 h5 {
     font-size: 1rem;
     font-weight: 400;
     margin-bottom: 2rem;
     color: #eee;
 }

 .hero-button {
     display: inline-block;
     padding: 0.75rem 2rem;
     background-color: #00a8e8;
     color: #fff;
     text-decoration: none;
     font-weight: 600;
     border-radius: 4px;
     transition: background-color 0.3s ease;
 }

 .hero-button:hover {
     background-color: #007bb8;
 }

 /* Адаптив */
 @media (max-width: 992px) {
     .uikIANs0K3 h1 {
         font-size: 1.8rem;
     }

     .uikIANs0K3 h2 {
         font-size: 1.3rem;
     }

     .uikIANs0K3 h5 {
         font-size: 0.95rem;
     }
 }

 @media (max-width: 576px) {
     .hero-wrapper {
         height: auto;
         padding: 3rem 0;
     }

     .uikIANs0K3 {
         padding: 1rem;
     }

     .uikIANs0K3 h1 {
         font-size: 1.5rem;
     }

     .uikIANs0K3 h2 {
         font-size: 1.1rem;
     }

     .uikIANs0K3 h5 {
         font-size: 0.9rem;
     }
 }





 .wrapper {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* Premium Services */
 .premium-services__header {
     text-align: center;
     margin-bottom: 3rem;
 }

 .m6DMM9VcXF {
     font-size: 2.75rem;
     font-weight: 700;
     color: #1a1a1a;
     letter-spacing: 1.1px;
 }

 .premium-services__grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 2rem;
 }

 .service-card {
     background: #fff;
     border-radius: 16px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
     overflow: hidden;
     display: flex;
     flex-direction: column;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .service-card:focus,
 .service-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
     outline: none;
 }

 .service-card__image-wrapper {
     overflow: hidden;
     max-height: 220px;
 }

 .service-card__image {
     width: 100%;
     height: 220px;
     object-fit: cover;
     transition: transform 0.3s ease;
 }

 .service-card:hover .service-card__image {
     transform: scale(1.05);
 }

 .service-card__content {
     padding: 20px 24px 30px;
     flex-grow: 1;
     display: flex;
     flex-direction: column;
 }

 .service-card__title {
     font-size: 1.6rem;
     font-weight: 700;
     margin-bottom: 1rem;
     color: #222;
 }

 .service-card__description {
     font-size: 1rem;
     line-height: 1.5;
     color: #555;
     flex-grow: 1;
 }

 .service-card__price {
     font-weight: 700;
     font-size: 1.15rem;
     margin-top: 1.5rem;
     color: #333;
 }

 /* Кнопка */
 .btn {
     display: inline-block;
     padding: 14px 28px;
     margin-top: 20px;
     border-radius: 40px;
     font-weight: 600;
     text-align: center;
     background-color: #0077cc;
     color: #fff;
     text-decoration: none;
     box-shadow: 0 5px 15px rgba(0, 119, 204, 0.4);
     transition: background-color 0.3s ease, box-shadow 0.3s ease;
     user-select: none;
 }

 .btn:hover,
 .btn:focus {
     background-color: #005fa3;
     box-shadow: 0 8px 20px rgba(0, 95, 163, 0.6);
     outline: none;
 }

 .btn--primary {
     background-color: #0077cc;
 }

 .btn--primary:hover {
     background-color: #005fa3;
 }

 .btn--fullwidth {
     width: 100%;
 }

 /* Client Feedback */
 .NcR0G5oMHC {
     text-align: center;
     margin-bottom: 3rem;
 }

 .client-feedback__title {
     font-size: 2.5rem;
     font-weight: 700;
     color: #1a1a1a;
     letter-spacing: 1.1px;
 }

 .client-feedback__list {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 2rem;
 }

 .testimonial {
     background-color: #fff;
     border-radius: 14px;
     padding: 25px 30px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
     font-style: italic;
     color: #444;
     transition: background-color 0.3s ease;
 }

 .testimonial:focus,
 .testimonial:hover {
     background-color: #f0f8ff;
     outline: none;
 }

 .testimonial p {
     margin: 0 0 1.2rem;
     font-size: 1rem;
     line-height: 1.6;
 }

 .testimonial__author {
     font-weight: 700;
     font-style: normal;
     color: #222;
     font-size: 1rem;
 }

 /* --- Адаптивність --- */

 @media (max-width: 992px) {

     .m6DMM9VcXF,
     .client-feedback__title {
         font-size: 2rem;
     }

     .service-card__image,
     .testimonial {
         max-height: none;
         height: auto;
     }
 }

 @media (max-width: 576px) {

     .premium-services__grid,
     .client-feedback__list {
         grid-template-columns: 1fr;
     }

     .btn {
         padding: 16px 0;
         font-size: 1.1rem;
     }

     .service-card__title {
         font-size: 1.3rem;
     }

     .service-card__description,
     .testimonial p {
         font-size: 0.95rem;
     }
 }