 .text-logo {
     color: #b08d57;
     font-weight: 600;
 }

 .bg-cream {
     background-color: #f5f3f0;
 }

 .bg-light {
     background-color: #e0e0e0;
 }

 .text-dark {
     color: #333;
 }

 section {
     padding: 60px 0;
 }

 .slider-split {
     max-height: 900px;
     overflow: hidden;
     padding: 0;
 }

 .slider-content {
     display: flex;
     height: 100%;
 }

 .slider-text {
     width: 50%;
     background: linear-gradient(135deg, #b08d57, #9e7b4f);
     color: #fff;
     padding: 40px 50px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     position: relative;
     min-height: 100%;
     box-sizing: border-box;
 }

 .slider-text h3 {
     font-size: 32px;
     font-weight: 600;
     margin-bottom: 20px;
 }

 .slider-text p {
     height: 30px;
     font-size: 18px;
     line-height: 1.5;
     margin-bottom: 30px;
 }

 .slider-text .btn {
     max-width: 200px;
     font-size: 16px;
     margin-top: 20px;
     padding: 10px 20px;
     border-radius: 2px;
     background-color: #fff;
     color: #9e7b4f;
     border: none;
     transition: background-color 0.3s ease, color 0.3s ease;
 }

 .slider-text .btn:hover,
 .slider-text .btn:focus {
     background-color: #d7c5a6;
     color: #6a4f2b;
     cursor: pointer;
 }

 .slider-image {
     width: 50%;
     overflow: hidden;
 }

 .slider-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
 }

 .carousel-indicators {
     position: absolute;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     justify-content: center;
     gap: 12px;
     padding-left: 0;
     margin: 0;
     width: auto;
 }

 .carousel-indicators button {
     width: 12px;
     height: 12px;
     background-color: rgba(255, 255, 255, 0.5);
     border: none;
     transition: background-color 0.3s ease;
     cursor: pointer;
 }

 .carousel-indicators button.active {
     background-color: #fff;
 }

 @media (max-width: 768px) {
     .slider-split {
         min-height: 0;
     }

     .slider-content {
         flex-direction: column;
         height: 100%;
     }

     .slider-text {
         width: 100%;
         position: absolute;
         top: 0;
         left: 0;
         right: 0;
         bottom: 0;
         background: none;
         z-index: 2;
         padding: 30px 20px;
         justify-content: flex-end;
         text-align: center;
         align-items: center;
     }

     .slider-text h3 {
         font-size: 2rem;
         margin-bottom: 15px;
     }

     .slider-text p {
         font-size: 1rem;
         margin-bottom: 20px;
         height: auto;
     }

     .slider-text .btn {
         max-width: 200px;
         font-size: 1rem;
     }

     .slider-image {
         width: 100%;
         height: 100%;
         position: relative;
     }

     .slider-image::after {
         content: '';
         position: absolute;
         top: 0;
         left: 0;
         right: 0;
         bottom: 0;
         background: rgba(0, 0, 0, 0.5);
     }

     .carousel-indicators {
         bottom: 20px;
     }
 }

 .company-info .col-counts {
     display: flex;
     flex-direction: column;
     justify-content: center;
     padding-right: 80px;
 }

 .company-info .col-counts h3 {
     color: #b08d57;
     font-family: "Poppins", sans-serif;
     font-size: 42px;
     font-weight: 400;
     margin-bottom: 0px !important;
 }

 .company-info .col-counts p {
     font-size: 15px;
 }

 .company-info .col-counts .text-logo {
     font-family: "Poppins", sans-serif;
     font-size: 30px;
     font-weight: 500;
     margin-bottom: 35px;
     text-align: start !important;
 }

 .company-info .col-info {
     padding-left: 80px;
 }

 .company-info .col-info p {
     letter-spacing: 1.3px;
     font-size: 16px;
     font-weight: 400;
     color: #333;
     line-height: 1.8;
 }

 .company-info .btn-primary {
     margin-top: 30px;
 }

 .section-services .col-md-3 {
     padding: 0 5px;
 }

 .service-card {
     height: 320px;
     position: relative;
     overflow: hidden;
     border-radius: 1px !important;
     cursor: pointer;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .service-card:hover,
 .service-card:focus {
     transform: translateY(-8px) scale(1.03);
     box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
     outline: none;
     text-decoration: none;
 }

 .service-bg-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transition: transform 0.4s ease;
 }

 .service-text-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     padding: 60px 15px 20px 15px;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
     box-sizing: border-box;
     color: #fff;
 }

 .service-title {
     font-weight: 700;
     font-size: 1.5rem;
     margin-bottom: 4px;
 }

 .service-description {
     font-size: 1rem;
     line-height: 1.3;
     max-height: 3.6em;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .testimonial-card {
     /* height: 150px; */
     height: 130px;
     box-sizing: border-box;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
     border-radius: 12px;
     background-color: #fff;
     padding: 1rem 1.5rem;
     display: flex;
     align-items: center;
     gap: 1.5rem;
     width: 100%;
 }

 .testimonial-avatar {
     display: none;
     width: 64px;
     height: 64px;
     object-fit: cover;
     border-radius: 50%;
     flex-shrink: 0;
     align-self: center;
 }

 .testimonial-text {
     display: flex;
     flex-direction: column;
     height: 100%;
     justify-content: space-between;
     flex-grow: 1;
 }

 .testimonial-content {
     font-style: italic;
     font-size: 16px;
     line-height: 1.4;
     margin: 0 0 0.25rem 0;
     color: #333;
     flex-grow: 1;
 }

 .testimonial-author {
     font-weight: 600;
     color: #666;
     font-style: normal;
     margin: 0;
     margin-top: auto;
     align-self: flex-start;
 }


 .portfolio-grid {
     margin-left: -10px;
     margin-right: -10px;
     overflow: hidden;
 }

 .portfolio-grid::after {
     content: "";
     display: block;
     clear: both;
 }

 .grid-sizer {
     width: calc((100% - 40px) / 3);
     float: left;
 }

 .portfolio-item {
     width: calc((100% - 40px) / 3);
     padding-left: 10px;
     padding-right: 10px;
     margin-bottom: 30px;
     float: left;
     box-sizing: border-box;
 }

 .portfolio-card {
     display: block;
 }

 .portfolio-item img {
     width: 100%;
     height: auto;
     display: block;
     border-radius: 2px;
     object-fit: cover;
     cursor: pointer;
     transition: transform 0.3s ease;
 }

 .portfolio-caption {
     padding-top: 12px;
 }

 .portfolio-title {
     margin: 0 0 4px;
     font-size: 17px;
     font-weight: 600;
     color: #333;
     text-transform: capitalize;
 }

 .portfolio-note {
     margin: 0;
     font-size: 14px;
     color: #6c757d;
 }

 @media (max-width: 1199px) and (min-width: 769px) {
     .grid-sizer,
     .portfolio-item {
         width: calc((100% - 20px) / 2);
     }
 }

 .section-cta h2 {
     font-size: 28px;
 }

 .section-cta p {
     font-size: 18px;
 }

 .section-cta .btn-primary {
     margin-top: 30px;
 }

 .faq-block {
     padding-left: 50px;
 }

 .accordion {
     border-radius: 8px;
     border: 1px solid #b08d57;
     box-shadow: 0 2px 8px rgba(176, 141, 87, 0.15);
     background-color: #f5f3f0;
     overflow: hidden;
 }

 .accordion-item {
     border: none;
     border-bottom: 1px solid #b08d57;
 }

 .accordion-item:last-child {
     border-bottom: none;
 }

 .accordion-button {
     background-color: #f5f3f0 !important;
     color: #4a4a4a !important;
     font-weight: 500;
     font-size: 14px;
     letter-spacing: 0.8px;
     padding: 1rem 1.5rem;
     border-radius: 0 !important;
     /* убираем скругления */
     box-shadow: none !important;
     transition: background-color 0.3s ease;
 }

 .accordion-button:hover {
     background-color: #e1d8c6 !important;
     color: #3a3a3a !important;
 }

 .accordion-button::after {
     font-size: 1.25rem;
     color: #b08d57 !important;
 }

 .accordion-button:not(.collapsed)::after {
     transform: rotate(180deg);
     color: #8c6d32 !important;
     background-image: var(--bs-accordion-btn-icon);
 }

 .accordion-body {
     background-color: #fff;
     color: #333;
     font-size: 15px;
     line-height: 1.6;
     padding: 1rem 1.5rem;
     border-top: 1px solid #b08d57;
     transition: all 0.3s ease;
 }

 .faq-text {
     font-size: 16px;
     letter-spacing: 1.3px;
     font-weight: 400;
     color: #333;
     line-height: 1.8;
     margin-bottom: 1.5rem;
 }

 @media (max-width: 576px) {

     .accordion-button,
     .accordion-body {
         font-size: 16px;
         padding-left: 1rem;
         padding-right: 1rem;
     }
 }


 @media (max-width: 768px) {

     .company-info .col-counts,
     .company-info .col-info {
         padding: 0 12px !important;
     }

     .col-info {
         align-items: center !important;
     }

     #testimonialCarousel .carousel-item .col-md-6 {
         display: none;
     }

     #testimonialCarousel .carousel-item .col-md-6:first-child {
         display: block;
         width: 100%;
         max-width: 100%;
         flex: 0 0 100%;
     }

     #testimonialCarousel .row.g-4.justify-content-center {
         flex-direction: column !important;
         align-items: stretch !important;
     }

     #testimonialCarousel .testimonial-card {
         /* height: 270px !important; */
         height: 170px !important;
         flex-direction: column;
         text-align: center;
         padding: 1.5rem 1rem;
         gap: 1rem;
     }

     #testimonialCarousel .testimonial-avatar {
         margin-bottom: 1rem;
         margin-right: 0;
     }

     .testimonial-author {
         align-self: end;
     }

     .portfolio-grid {
         margin-left: 0;
         margin-right: 0;
     }

     .grid-sizer,
     .portfolio-item {
         width: 100% !important;
         float: none !important;
         padding-left: 0;
         padding-right: 0;
         margin-bottom: 18px;
         box-sizing: border-box;
     }

     .portfolio-item img {
         border-radius: 10px;
         width: 100%;
         height: auto;
     }

     .portfolio-item p {
         font-size: 15px;
         margin-top: 8px;
         margin-bottom: 0;
     }

     .faq-block {
         padding: 0 12px;
     }
 }
