* {
   margin: 0;
	padding: 0;
   box-sizing: border-box;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
   line-height: normal;
   color: #4a4a4a;
  background: #f5f5f5;
}

#header {
    position: sticky;
   top: 0;
   z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header {
  background: #ffffff;
}

.header-wrapper {
    max-width: 1200px;
    min-width: 950px;
    margin: 0 auto;
    padding: 15px 8px;
    display   :      flex;
   justify-content: space-between;
    align-items: center;
}

.header__logo img {
   max-height: 114px;
  width: auto;
}

.header__nav {
   flex-grow: 1;
    display: flex;
   justify-content: center;
}

.header__nav-list {
   list-style: none;
    display: flex;
   gap: 20px;
}

.header__nav-link {
    color: #4a4a4a;
  text-decoration: none;
  font-size: 17px;
  padding: 8px 15px;
    border-radius     :     8px;
   transition: all 0.3s;
}

.header__nav-link:hover {
    background: #f0f0f0;
}

.header__nav-link--active {
   color: #f14635;
  background: #fff5f4;
}

.burger-icon {
  display: none;
    flex-direction: column;
    gap: 5px;
   cursor: pointer;
}

.burger-icon span {
    width: 25px;
   height: 3px;
    background: #4a4a4a;
   transition: all 0.3s;
}

.burger-icon.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.burger-icon.active span:nth-child(2) {
    opacity: 0;
}

.burger-icon.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.main__wrapper {
   background: #f5f5f5;
}

.index__wrapper {
    background: #f5f5f5;
}

.main-screen {
   padding: 0;
   background: #ffffff;
}

.main-screen__wrapper {
  max-width: 1200px;
    margin: 0 auto;
  padding: 40px 8px;
}

.product-block {
  text-align: center;
}

.product-block__hero {
   margin-bottom: 20px;
}

.product-block__hero img {
   width: 100%;
  max-width: 600px;
   height: auto;
   border-radius: 20px;
}

.product-block__title {
    font-size: 50px;
    font-weight: 500;
   line-height: normal;
    color: #f14635;
    margin-bottom: 20px;
}

.product-block__description {
    font-size: 20px;
  color: #4a4a4a;
   margin-bottom: 20px;
   max-width: 800px;
   margin-left: auto;
   margin-right: auto;
}

.product-block__action {
   margin-top: 20px;
}

.app-button {
  background: #f14635;
  color: white;
  border: none;
   border-radius: 8px;
   padding: 14px 28px;
  font-size: 18px;
    cursor: pointer;
    text-decoration    :       none;
    display: inline-block;
    transition: background 0.3s;
}

.app-button:hover {
  background: #d93b2a;
}

.app-button--centered {
  margin: 0 auto;
}

.benefits {
  padding: 40px 0;
    background: #ffffff;
}

.benefits__wrapper {
    max-width: 1200px;
   margin: 0 auto;
   padding: 0 8px;
}

.benefits__title {
   font-size: 30px;
   font-weight: 500;
    text-align: center;
  margin-bottom: 40px;
   color: #f14635;
}

.benefits__cards {
   display: flex;
  gap: 20px;
   flex-wrap: wrap;
   justify-content: center;
}

.benefit-card {
   background: #ffffff;
    border: 1px solid #f0f0f0;
   border-radius: 20px;
   padding: 20px;
  flex: 1;
   min-width: 280px;
  max-width: 360px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        transition: box-shadow 0.3s;
}

.benefit-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.benefit-card__icon {
          margin-bottom: 15px;
}

.benefit-card__icon img {
  width: 100%;
  height: 180px;
    object-fit: cover;
    border-radius: 20px;
}

.benefit-card__title {
    font-size: 17px;
    color: #4a4a4a;
  line-height: 1.4;
}

.services-overview {
    padding: 40px 0;
   background: #f5f5f5;
}

.services-overview__wrapper {
  max-width: 1200px;
   margin: 0 auto;
  padding: 0 8px;
}

.services-overview__title {
   font-size: 30px;
  font-weight: 500;
   text-align: center;
    margin-bottom: 40px;
   color: #f14635;
}

.services-overview__grid {
  display: flex;
  gap: 20px;
   flex-wrap: wrap;
  justify-content: center;
}

.service-item {
   background: #ffffff;
   border-radius: 20px;
  padding: 20px;
   flex: 1;
    min-width: 300px;
  max-width: 380px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-item__image {
       margin-bottom: 15px;

}

.service-item__image img {
   width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
}

.service-item__name {
    font-size: 20px;
    font-weight: 500;
    color: #f14635;
  margin-bottom: 15px;
}

.service-item__desc {
  font-size: 17px;
  color: #4a4a4a;
    margin-bottom: 15px;
  line-height: 1.5;
}

.service-item__link {
   color: #0089d0;
  text-decoration: none;
   font-size: 17px;
    border-bottom: 1px solid #0089d0;
  transition: color 0.3s;
}

.service-item__link:hover {
  color: #006ba6;
}

.stepper {
    padding: 40px 8px;
  background: #ffffff;
}

.stepper__title {
    font-size: 30px;
  font-weight: 500;
  text-align: center;
    margin-bottom: 40px;
    color: #f14635;
   max-width: 1200px;
   margin-left: auto;
    margin-right: auto;
}

.stepper__steps {
   display: flex;
  gap: 15px;
	 max-width: 1200px;
       margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  flex: 1;
    min-width: 180px;
    background: #f5f5f5;
    padding: 20px 15px;
  border-radius: 20px;
  text-align: center;
}

.step__number {
    font-size: 30px;
    font-weight: 500;
    color: #f14635;
    margin-bottom: 15px;
}

.step__title {
   font-size: 17px;
  color: #4a4a4a;
  line-height: 1.4;
}

.limit-container {
   max-width: 1200px;
  margin: 0 auto;
   padding: 0 8px;
}

.renewable-section {
  padding: 40px 0;
   background: #f5f5f5;
}

.renewable-section__content {
   display: flex;
   gap: 40px;
  align-items: center;
    flex-wrap: wrap;
}

.renewable-section__image-block {
  flex: 1;
  min-width: 300px;
}

.renewable-section__image-block img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.renewable-section__text-block {
    flex: 1;
    min-width: 300px;
}

.renewable-section__heading {
    font-size: 30px;
  font-weight: 500;
    color: #f14635;
  margin-bottom: 20px;
}

.renewable-section__paragraph {
    font-size: 17px;
    color: #4a4a4a;
   margin-bottom: 15px;
    line-height: 1.5;
}

.waste-management {
  padding: 40px 0;
  background: #ffffff;
}

.waste-management__grid {
    display: flex;
  gap: 40px;
    align-items: center;
   flex-wrap: wrap;
}

.waste-management__text {
    flex: 1;
    min-width: 300px;
}

.waste-management__title {
    font-size: 30px;
    font-weight: 500;
  color: #f14635;
    margin-bottom: 20px;
}

.waste-management__info {
  font-size: 17px;
   color: #4a4a4a;
   margin-bottom: 15px;
    line-height: 1.5;
}

.waste-management__image {
  flex: 1;
  min-width: 300px;
}

.waste-management__image img {
    width: 100%;
   height: auto;
   border-radius: 20px;
}

.electric-mobility {
    padding: 40px 0;
   background: #f5f5f5;
}

.electric-mobility__header {
  font-size: 30px;
   font-weight: 500;
    text-align: center;
   color: #f14635;
   margin-bottom: 40px;
}

.electric-mobility__layout {
    display: flex;
  gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.electric-mobility__photo {
        flex: 1;
   min-width: 300px;
}

.electric-mobility__photo img {
    width: 100%;
  height: auto;
  border-radius: 20px;
}

.electric-mobility__content {
    flex: 1;
    min-width: 300px;
}

.electric-mobility__text {
   font-size: 17px;
   color: #4a4a4a;
  margin-bottom: 15px;
    line-height: 1.5;
}

.water-conservation {
   padding: 40px 0;
  background: #ffffff;
}

.water-conservation__flex {
   display: flex;
   gap: 40px;
    align-items: center;
   flex-wrap: wrap;
}

.water-conservation__description {
   flex: 1;
  min-width: 300px;
}

.water-conservation__heading {
   font-size: 30px;
   font-weight: 500;
  color: #f14635;
  margin-bottom: 20px;
}

.water-conservation__details {
    font-size: 17px;
   color: #4a4a4a;
   margin-bottom: 15px;
   line-height: 1.5;
}

.water-conservation__photo {
   flex: 1;
  min-width: 300px;
}

.water-conservation__photo img {
    width: 100%;
   height: auto;
  border-radius: 20px;
}

.biodiversity {
  padding: 40px 0;
    background: #f5f5f5;
}

.biodiversity__title {
   font-size: 30px;
   font-weight: 500;
   text-align: center;
    color: #f14635;
  margin-bottom: 40px;
}

.biodiversity__container {
   display: flex;
    gap: 40px;
   align-items: center;
  flex-wrap: wrap;
}

.biodiversity__img-wrapper {
  flex: 1;
  min-width: 300px;
}

.biodiversity__img-wrapper img {
   width: 100%;
  height: auto;
   border-radius: 20px;
}

.biodiversity__text-wrapper {
    flex: 1;
    min-width: 300px;
}

.biodiversity__paragraph {
    font-size: 17px;
    color: #4a4a4a;
  margin-bottom: 15px;
   line-height: 1.5;
}

.startup-ecosystem {
    padding: 40px 0;
  background: #ffffff;
}

.startup-ecosystem__blocks {
   display: flex;
   gap: 40px;
    align-items: center;
   flex-wrap: wrap;
}

.startup-ecosystem__text-part {


  flex: 1;
    min-width: 300px;
}

.startup-ecosystem__heading {
  font-size: 30px;
  font-weight: 500;
    color: #f14635;
   margin-bottom : 20px;
}

.startup-ecosystem__description {
               font-size: 17px;
  color: #4a4a4a;
    margin-bottom: 15px;
  line-height: 1.5;
}

.startup-ecosystem__image-part {
    flex: 1;
    min-width: 300px;
}

.startup-ecosystem__image-part img {
   width: 100%;
  height: auto;
    border-radius: 20px;
}

.educational-programs {
    padding: 40px 0;
   background: #f5f5f5;
}

.educational-programs__main-title {
  font-size: 30px;
   font-weight: 500;
    text-align: center;
    color: #f14635;
    margin-bottom: 40px;
}

.educational-programs__flex {
  display: flex;
  gap: 40px;
   align-items: center;
    flex-wrap: wrap;
}

.educational-programs__image-col {
    flex: 1;
    min-width: 300px;
}

.educational-programs__image-col img {
  width: 100%;
   height: auto;
  border-radius: 20px;
}

.educational-programs__text-col {
  flex: 1;
   min-width: 300px;
}

.educational-programs__content {
   font-size: 17px;
  color: #4a4a4a;
   margin-bottom: 15px;
  line-height: 1.5;
}

.zero-waste {
  padding: 40px 0;
   background: #ffffff;
}

.zero-waste__container {
   display: flex;
  gap: 40px;
    align-items: center;
   flex-wrap: wrap;
}

.zero-waste__text-section {
   flex: 1;
   min-width: 300px;
}

.zero-waste__title {
  font-size: 30px;
    font-weight: 500;
    color: #f14635;
    margin-bottom: 20px;
}

.zero-waste__paragraph {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 15px;
   line-height: 1.5;
}

.zero-waste__image-section {
    flex: 1;
    min-width: 300px;
}

.zero-waste__image-section img {
    width: 100%;
  height: auto;
  border-radius: 20px;
}

.solar-installations {
   padding: 40px 0;
   background: #f5f5f5;
}

.solar-installations__heading {
    font-size: 30px;
  font-weight: 500;
  text-align: center;
    color: #f14635;
    margin-bottom: 40px;
}

.solar-installations__grid {
  display: flex;
   gap: 40px;
    align-items: center;
  flex-wrap: wrap;
}

.solar-installations__img-block {
  flex: 1;
    min-width: 300px;
}

.solar-installations__img-block img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.solar-installations__text-block {
   flex: 1;
    min-width: 300px;
}

.solar-installations__text {
   font-size: 17px;
  color: #4a4a4a;
  margin-bottom: 15px;
    line-height: 1.5;
}

.composting {
   padding: 40px 0;
  background: #ffffff;
}

.composting__content {
          display: flex;
  gap: 40px;
  align-items: center;
   flex-wrap: wrap;
}

.composting__text-area {
   flex: 1;
  min-width: 300px;
}

.composting__header {
   font-size: 30px;
  font-weight: 500;
    color: #f14635;
   margin-bottom: 20px;
}

.composting__info {
  font-size: 17px;
   color: #4a4a4a;
   margin-bottom: 15px;
  line-height     :   1.5;
}

.composting__image-area {
  flex: 1;
  min-width: 300px;
}

.composting__image-area img {
    width: 100%;
  height: auto;
    border-radius: 20px;
}

.audits {
   padding: 40px 0;
   background: #f5f5f5;
}

.audits__title {
   font-size: 30px;
  font-weight: 500;
    text-align: center;
  color: #f14635;
   margin-bottom: 40px;
}

.audits__layout {
   display: flex;
    gap: 40px;
   align-items: center;
     flex-wrap: wrap;
}

.audits__image-column {
  flex: 1;
   min-width: 300px;
}

.audits__image-column img {
    width: 100%;
   height: auto;
   border-radius: 20px;
}

.audits__text-column {
    flex: 1;
  min-width: 300px;
}

.audits__description {
  font-size: 17px;
   color: #4a4a4a;
  margin-bottom: 15px;
    line-height: 1.5;
}

.blog-section {
   padding: 40px 0;
    background: #ffffff;
}

.blog-section__header {
    font-size: 30px;
    font-weight: 500;
   text-align: center;
    color: #f14635;
  margin-bottom: 40px;
}

.blog-section__cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.blog-card {
    background: #f5f5f5;
    border-radius: 20px;
  padding: 20px;
   flex: 1;
  min-width: 280px;
   max-width: 360px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.blog-card__title {
    font-size: 20px;
    font-weight: 500;
    color: #f14635;
  margin-bottom: 15px;
}

.blog-card__excerpt {
   font-size: 17px;
    color: #4a4a4a;
   margin-bottom: 15px;
    line-height: 1.5;
}

.blog-card__link {
  color: #0089d0;
    text-decoration: none;
   font-size: 17px;
   border-bottom: 1px solid #0089d0;
}

.blog-card__link:hover {
    color: #006ba6;
}

.contact-section {
  padding: 40px 0;
   background: #f5f5f5;
}

.contact-section__title {
  font-size: 30px;
  font-weight: 500;
    text-align: center;
   color: #f14635;
    margin-bottom: 20px;
}

.contact-section__intro {
    font-size: 17px;
   text-align: center;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
  background: #ffffff;
    padding: 40px;
    border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-form__group {
   margin-bottom: 20px;
}

.contact-form__label {
  display   :  block;
   font-size: 17px;
   color: #4a4a4a;
    margin-bottom: 8px;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
    width: 100%;
    padding: 14px;
  font-size: 17px;
    border: 1px solid #ddd;
   border-radius: 8px;
  font-family: 'Roboto', Arial, sans-serif;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: #f14635;
}

.contact-form__button {
  width: 100%;
}

#footer {
  background: #4a4a4a;
   color: #ffffff;
}

.footer {
    padding: 40px 0 20px;
}

.footer__section {
   max-width: 1200px;
   margin: 0 auto;
  padding: 0 8px;
  display: flex;
    gap: 40px;
  flex-wrap: wrap;
}

.footer__left {
    flex: 2;
  min-width: 300px;
}

.footer__logo-block {
  margin-bottom: 20px;
}

.footer__logo-img {
   max-height: 146px;
    width: auto;
  filter: brightness(0) invert(1);
   margin-bottom: 15px;
}

.footer__company-info {
   font-size: 17px;
    color: #a8a8a8;
  line-height: 1.5;
}

.footer__right {
   flex: 3;
          display: flex;
    gap: 40px;
   flex-wrap: wrap;
}

.vertical-menu {
   flex: 1;
  min-width: 180px; 
	
}

.vertical-menu__title {
   font-size: 17px;
    font-weight: 500;
  color: #ffffff;
    margin-bottom: 15px;
    display: block;
}

.vertical-menu__wrapper {
   list-style: none;
}

.vertical-menu__item {
  margin-bottom: 8px;
   font-size: 17px;
    color: #a8a8a8;
}

.vertical-menu__item a {
  color: #a8a8a8;
	text-decoration: none;
    transition: color 0.3s;
}

.vertical-menu__item a:hover {
    color: #ffffff;
}

.footer-2 {
   border-top: 1px solid #666;
    padding: 20px 0;
}

.footer-2__wrapper {


  max-width: 1200px;
    margin: 0 auto;
  padding: 0 8px;
     }

.footer-2__section {
   display: flex;
    justify-content: center;
  align-items: center;
}

.footer-2__left-copyright {
  font-size: 17px;
  color: #a8a8a8;
}@media (max-width: 768px){
  .header-wrapper{
    min-width: auto;
  }
  
  .header__nav{
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    padding: 80px 20px 20px;
    transition: left 0.3s;
    z-index: 999;
    box-shadow: 2px 0 8px rgba(0,0,0,0.1);
  }
  
  .header__nav.active{
    left: 0;
  }
  
  .header__nav-list{
    flex-direction: column;
    gap: 0;
  }
  
  .header__nav-link{
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .burger-icon{
    display: flex;
    z-index: 1001;
  }
  
  .product-block__title{
    font-size: 24px;
  }
  
  .benefits__title,
  .services-overview__title,
  .stepper__title,
  .renewable-section__heading,
  .waste-management__title,
  .electric-mobility__header,
  .water-conservation__heading,
  .biodiversity__title,
  .startup-ecosystem__heading,
  .educational-programs__main-title,
  .zero-waste__title,
  .solar-installations__heading,
  .composting__header,
  .audits__title,
  .blog-section__header,
  .contact-section__title{
    font-size: 24px;
  }
  
  .product-block__description,
  .benefit-card__title,
  .service-item__desc,
  .step__title,
  .renewable-section__paragraph,
  .waste-management__info,
  .electric-mobility__text,
  .water-conservation__details,
  .biodiversity__paragraph,
  .startup-ecosystem__description,
  .educational-programs__content,
  .zero-waste__paragraph,
  .solar-installations__text,
  .composting__info,
  .audits__description,
  .blog-card__excerpt,
  .contact-section__intro{
    font-size: 14px;
  }
  
  .contact-form{
    padding: 20px;
  }
}.services-page__wrapper {
  background: #f5f5f5;
}

.services-page__header {
  padding: 40px 0;
   background: #ffffff;
  text-align: center;
}

.services-page__title {
    font-size  :     50px;
   font-weight: 500;
  color: #f14635;
   margin-bottom: 15px;
}

.services-page__subtitle {
    font-size: 20px;
    color: #4a4a4a;
}

.services-catalog {
    padding: 40px 0;
}

.services-catalog__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
   justify-content: center;
}

.service-product {
  background: #ffffff;
   border-radius: 20px;
    padding: 20px;
    flex: 1;
   min-width: 280px;
  max-width: 360px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
   transition: box-shadow 0.3s;
}

.service-product:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.service-product__image {
    margin-bottom: 15px;
    overflow:     hidden;
   border-radius: 20px;
}

.service-product__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-product__name {
  font-size: 20px;
   font-weight: 500;
  color: #f14635;
  margin-bottom: 15px;
}

.service-product__description {
   font-size: 17px;
  color: #4a4a4a;
    margin-bottom: 15px;
   flex-grow: 1;
  line-height: 1.5;
}

.service-product__price {
  font-size: 20px;
    font-weight: 500;
  color: #0089d0;
   margin-bottom: 15px;
}

.service-product__button {
   width: 100%;
    text-align: center;
  margin-top: auto;
}

.thankyou-page   {
    min-height: 70vh;
   display: flex;
    align-items: center;
  padding: 60px 0;
  background: #f5f5f5;

}

.thankyou-page__content {
   background: #ffffff;
   border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  max-width: 800px;
   margin: 0 auto;
}

.thankyou-page__icon {
   margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thankyou-page__title {
   font-size: 50px;
   font-weight: 500;
   color: #f14635;
   margin-bottom: 20px;
}

.thankyou-page__message {
  font-size: 20px;
    color: #4a4a4a;
  margin-bottom: 20px;
  line-height: 1.6;
}

.thankyou-page__info {
  font-size: 17px;
  color: #4a4a4a;
    margin-bottom: 40px;
}

.thankyou-page__phone {
  color: #0089d0;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #0089d0;
}

.thankyou-page__phone:hover {
  color: #006ba6;
}

.thankyou-page__actions {
    display: flex;
   gap: 20px;
  justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.thankyou-page__link-secondary {
   padding: 14px 28px;
    background: transparent;
    color: #f14635;
   border: 2px solid #f14635;
  border-radius: 8px;
   text-decoration: none;
    font-size: 18px;
   transition: all 0.3s;
  display: inline-block;
}

.thankyou-page__link-secondary:hover {
   background: #f14635;
    color: #ffffff;
}

.thankyou-page__additional {
    border-top: 1px solid #f0f0f0;
   padding-top: 40px;
    margin-top: 40px;
}

.thankyou-page__subtitle {
    font-size: 30px;
  font-weight: 500;
  color: #f14635;
   margin-bottom: 30px;
}

.thankyou-page__steps {
  list-style: none;
  text-align: left;
  max-width: 600px;
    margin: 0 auto;
}

.thankyou-page__step {
  display: flex;
  align-items: flex-start;
  gap   :      20px;
  margin-bottom: 25px;
   padding: 15px;
   background: #f5f5f5;
  border-radius: 8px;
}

.thankyou-page__step-number {
  background: #f14635;
  color: #ffffff;
    width: 40px;
    height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
   flex-shrink: 0;
}

.thankyou-page__step-text {
  font-size: 17px;
  color: #4a4a4a;
  line-height: 1.5;
    padding-top: 8px;
}@media (max-width: 768px){
  .services-page__title{
    font-size:24px;
  }
  
  .services-page__subtitle{
    font-size:14px;
  }
  
  .service-product__name{
    font-size:17px;
  }
  
  .service-product__description{
    font-size:14px;
  }
  
  .service-product__price{
    font-size:17px;
  }
  
  .thankyou-page__content{
    padding:40px 20px;
  }
  
  .thankyou-page__title{
    font-size:24px;
  }
  
  .thankyou-page__message{
    font-size:14px;
  }
  
  .thankyou-page__info{
    font-size:14px;
  }
  
  .thankyou-page__subtitle{
    font-size:20px;
  }
  
  .thankyou-page__step-text{
    font-size:14px;
  }
  
  .thankyou-page__actions{
    flex-direction:column;
    align-items:stretch;
  }
  
  .thankyou-page__link-secondary{
    width:100%;
    text-align:center;
  }
}.services-page__wrapper {
  background: #f5f5f5;
}

.services-page__header {
   padding: 40px 0;
   background: #ffffff;
  text-align: center;
}

.services-page__title {
	font-size: 50px;
  font-weight: 500;
  color: #f14635;
    margin-bottom: 15px;
}

.services-page__subtitle {
   font-size: 20px;
  color: #4a4a4a;
}

.services-catalog {
  padding: 40px 0;
}

.services-catalog__grid {


    display: flex;
    flex-wrap: wrap;
  gap: 20px;
    justify-content: center;
}

.service-product {
   background: #ffffff;
   border-radius     : 20px;
   padding: 20px;
  flex: 1;
   min-width: 280px;
  max-width: 360px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
   flex-direction: column;
    transition: box-shadow 0.3s;
}

.service-product:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.service-product__image {
    margin-bottom: 15px;
  overflow: hidden;
   border-radius: 20px;
}

.service-product__image img {
  width: 100%;
   height: 200px;
   object-fit: cover;
	
}

.service-product__name {
  font-size: 20px;
    font-weight: 500;
  color: #f14635;
  margin-bottom: 15px;
}

.service-product__description {
   font-size: 17px;
    color: #4a4a4a;
  margin-bottom: 15px;
   flex-grow: 1;
  line-height: 1.5;
}

.service-product__price {
   font-size: 20px;
  font-weight: 500;
  color: #0089d0;
  margin-bottom: 15px;
}

.service-product__button {
   width: 100%;
   text-align: center;
   margin-top: auto;
}

.thankyou-page {
    min-height: 70vh;
    display: flex;
   align-items: center;
  padding: 60px 0;
    background: #f5f5f5;
}

.thankyou-page__content {
   background: #ffffff;
    border-radius: 20px;
  padding: 60px 40px;
    text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  max-width: 800px;
   margin: 0 auto;
}

.thankyou-page__icon {
    margin-bottom: 30px;
    display: flex;
   justify-content: center;
}

.thankyou-page__title {
   font-size: 50px;
    font-weight: 500;
   color: #f14635;
   margin-bottom: 20px;
}

.thankyou-page__message {
    font-size: 20px;
    color: #4a4a4a;
   margin-bottom: 20px;
   line-height: 1.6;
}

.thankyou-page__info {
    font-size: 17px;
  color: #4a4a4a;
   margin-bottom: 40px;
}

.thankyou-page__phone {
    color: #0089d0;
  text-decoration: none;
   font-weight: 500;
   border-bottom: 1px solid #0089d0;
}

.thankyou-page__phone:hover {
  color: #006ba6;
}

.thankyou-page__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  margin-bottom: 50px;
}

.thankyou-page__link-secondary {
   padding: 14px 28px;
    background: transparent;
   color: #f14635;
    border: 2px solid #f14635;
    border-radius: 8px;
   text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
  display  :  inline-block;
}

.thankyou-page__link-secondary:hover {
   background: #f14635;
  color: #ffffff;
}

.thankyou-page__additional {
    border-top: 1px solid #f0f0f0;
   padding-top: 40px;
  margin-top: 40px;
}

.thankyou-page__subtitle {
  font-size: 30px;
    font-weight: 500;
   color: #f14635;
    margin-bottom: 30px;
}

.thankyou-page__steps {
  list-style: none;
    text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.thankyou-page__step {
    display: flex;
  align-items: flex-start;
  gap: 20px;
       margin-bottom: 25px;
    padding: 15px;
    background: #f5f5f5;
  border-radius: 8px;
}

.thankyou-page__step-number {
    background: #f14635;
    color: #ffffff;
  width: 40px;
   height: 40px;
  border-radius: 50%;
    display: flex;
  align-items: center;
    justify-content: center;
   font-size: 20px;
    font-weight: 500;
    flex-shrink: 0;
}

.thankyou-page__step-text {
  font-size: 17px;
  color: #4a4a4a;
  line-height: 1.5;
    padding-top: 8px;
}@media (max-width: 768px){
  .services-page__title{
    font-size:24px;
  }
  
  .services-page__subtitle{
    font-size:14px;
  }
  
  .service-product__name{
    font-size:17px;
  }
  
  .service-product__description{
    font-size:14px;
  }
  
  .service-product__price{
    font-size:17px;
  }
  
  .thankyou-page__content{
    padding:40px 20px;
  }
  
  .thankyou-page__title{
    font-size:24px;
  }
  
  .thankyou-page__message{
    font-size:14px;
  }
  
  .thankyou-page__info{
    font-size:14px;
  }
  
  .thankyou-page__subtitle{
    font-size:20px;
  }
  
  .thankyou-page__step-text{
    font-size:14px;
  }
  
  .thankyou-page__actions{
    flex-direction:column;
    align-items:stretch;
  }
  
  .thankyou-page__link-secondary{
    width:100%;
    text-align:center;
  }
}.about-page {
    background     :#f5f5f5;
}

.about-page__hero {
    padding: 60px 0 40px;
    background: #ffffff;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.about-page__title {
   font-size: 50px;
  font-weight: 500;
  color: #f14635;
  margin-bottom: 15px;
}

.about-page__lead {
   font-size: 20px;
    color: #4a4a4a;
}

.about-page__section {
  padding: 40px 0;
    background: #ffffff;
}

.about-page__section--alt {
    background: #f5f5f5;
}

.about-page__content-block {
    display: flex;
   gap: 40px;
    align-items: center;
  flex-wrap: wrap;
}

.about-page__content-block--reverse {
    flex-direction: row-reverse;
}

.about-page__text-area {
    flex: 1;
   min-width: 300px;
}

.about-page__image-area {
  flex: 1;
    min-width: 300px;
}

.about-page__img {
   width: 100%;
   height: auto;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.about-page__heading {
    font-size: 30px;
  font-weight: 500;
    color: #f14635;
   margin-bottom: 20px;
}

.about-page__heading-center {
    font-size: 30px;
    font-weight: 500;
   color: #f14635;
   margin-bottom: 30px;
    text-align: center;
}

.about-page__paragraph {
    font-size: 17px;
   color: #4a4a4a;
   margin-bottom: 15px;
  line-height: 1.6;
}

.about-page__paragraph-center {
    font-size: 17px;
  color: #4a4a4a;
   margin-bottom: 20px;
    line-height: 1.6;
  max-width: 900px;
  margin-left: auto;
   margin-right: auto;
}

.about-page__values-grid {
   display: flex;
    flex-wrap :  wrap;
  gap: 20px;
  margin-top: 40px;
}

.about-value-card {
   background: #ffffff;
  border-radius: 20px;
  padding: 20px;
   flex: 1;
   min-width: 280px;
  max-width: 360px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.about-value-card__title {
   font-size: 20px;
   font-weight: 500;
  color: #f14635;
   margin-bottom: 15px;
}

.about-value-card__text {
   font-size: 17px;
    color: #4a4a4a;
    line-height: 1.5;
}

.about-page__why-list {
  margin-top: 40px;
}

.about-why-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
   padding: 20px;
   background: #f5f5f5;
  border-radius: 8px;
}

.about-why-item__number {
  background: #f14635;
    color: #ffffff;
   width: 50px;
  height: 50px;
    border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
    font-size: 20px;
   font-weight: 500;
    flex-shrink: 0;
}

.about-why-item__content {
  flex: 1;
}

.about-why-item__title {
  font-size: 20px;
   font-weight: 500;
    color: #f14635;
    margin-bottom: 10px;
}

.about-why-item__text {
   font-size: 17px;
   color: #4a4a4a;
  line-height: 1.5;
}

.about-page__final-block {
  display: flex;
   gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.about-page__final-image {
  flex: 1;
  min-width: 300px;
}

.about-page__final-text {
    flex: 1;
   min-width: 300px;
}

.about-page__cta {
   margin-top: 30px;
}@media (max-width: 768px){
  .about-page__title{
    font-size:24px;
  }
  
  .about-page__lead{
    font-size:14px;
  }
  
  .about-page__heading,
  .about-page__heading-center{
    font-size:20px;
  }
  
  .about-page__paragraph,
  .about-page__paragraph-center,
  .about-value-card__text,
  .about-why-item__text{
    font-size:14px;
  }
  
  .about-value-card__title,
  .about-why-item__title{
    font-size:17px;
  }
  
  .about-why-item{
    flex-direction:column;
    align-items:flex-start;
  }
}.policySection {
   padding: 80px 2rem;
  background: #f5f5f5;
}

.policyContainer {
  max-width: 800px;
    margin: 0 auto;
    text-align: left;
   background: #ffffff;
   padding: 60px 40px;
    border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.policyContainer h1 {
  font-size: 50px;
    font-weight: 500;
  color: #f14635;
   margin-bottom: 40px;
   text-align: center;
}

.policyContainer h2 {
  font-size: 30px;
    font-weight: 500;
    color: #f14635;
  margin-bottom: 20px;
   margin-top: 40px;
}

.policyContainer h2:first-of-type {
    margin-top: 0;
}

.policyContainer p {
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.7;
   font-size: 17px;
}@media (max-width: 768px) {
    .policyContainer {
        padding: 40px 20px;
    }
    
    .policyContainer h1 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .policyContainer h2 {
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .policyContainer p {
        font-size: 14px;
        line-height: 1.6;
    }

    .policySection {
        padding: 60px 1rem;
    }
}.blog-post {
  background: #f5f5f5;
}

.blog-post__hero {
   background: #ffffff;
    padding: 60px 0 40px;
    border-bottom: 1px solid #f0f0f0;
}

.blog-post__category {
   display: inline-block;
  background     :     #f14635;
  color: #ffffff;
   padding: 8px 20px;
    border-radius: 20px;
  font-size: 14px;
   font-weight: 500;
   margin-bottom: 20px;
   text-transform: uppercase;
   letter-spacing: 0.5px;
}

.blog-post__title {
  font-size: 50px;
	 font-weight: 500;
  color: #4a4a4a;
    margin-bottom: 20px;
  line-height: 1.2;
}

.blog-post__meta {
  display: flex;
  gap: 10px;
   align-items: center;
  color: #888;
   font-size: 15px;
}

.blog-post__separator {
  color: #ddd;
}

.blog-post__content {
  padding: 60px 0;
}

.blog-post__featured-image {
   margin-bottom: 40px;
    border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.blog-post__featured-image img {
  width: 100%;
  height: auto;
   display: block;
}

.blog-post__text {
  background: #ffffff;
   padding: 60px 80px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 40px;
}

.blog-post__text h2 {
  font-size: 30px;
    font-weight: 500;
    color: #f14635;
   margin-top: 50px;
  margin-bottom: 25px;
   line-height: 1.3;
}

.blog-post__text h2:first-child {
  margin-top: 0;
}

.blog-post__text h3 {
  font-size: 24px;
    font-weight: 500;
   color: #4a4a4a;
    margin-top: 40px;
  margin-bottom: 20px;
}

.blog-post__text p {
   font-size: 17px;
    color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 25px;
}

.blog-post__text ul,
.blog-post__text ol {
  margin: 25px 0;
  padding-left: 30px;
}

.blog-post__text li {
  font-size: 17px;
  color: #4a4a4a;
   line-height: 1.8;
   margin-bottom: 15px;
}

.blog-post__text a {
    color: #0089d0;
    text-decoration: none;
   border-bottom: 1px solid #0089d0;
  transition: color 0.3s;
}

.blog-post__text a:hover {
   color: #006ba6;
}

.blog-post__highlight {
   margin: 40px 0;
   border-radius: 20px;
    overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.blog-post__highlight img {
   width: 100%;
    height: auto;
   display: block;
}

.blog-post__cta {
    background: #ffffff;
   border-radius: 20px;
   padding: 50px 60px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
   margin-bottom: 40px;
    border: 2px solid #f14635;
}

.blog-post__cta h3 {
  font-size: 30px;
    font-weight: 500;
    color: #f14635;
  margin-bottom: 20px;
}

.blog-post__cta p {
    font-size: 17px;
   color: #4a4a4a;
    margin-bottom: 30px;
  line-height: 1.6;
}

.blog-post__back {
    text-align: center;
  padding: 20px 0;
}

.blog-post__back-link {
  color: #0089d0;
  text-decoration: none;
    font-size: 17px;
   font-weight: 500;
    transition: color 0.3s;
   display: inline-flex;
  align-items: center;
    gap: 8px;
}



.blog-post__back-link:hover {
    color: #006ba6;
}@media (max-width: 768px) {
    .blog-post__hero {
        padding: 40px 0 30px;
    }

    .blog-post__title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .blog-post__category {
        font-size: 12px;
        padding: 6px 15px;
        margin-bottom: 15px;
    }

    .blog-post__meta {
        font-size: 13px;
    }

    .blog-post__content {
        padding: 40px 0;
    }

    .blog-post__featured-image {
        margin-bottom: 30px;
        border-radius: 12px;
    }

    .blog-post__text {
        padding: 30px 20px;
        border-radius: 12px;
        margin-bottom: 30px;
    }

    .blog-post__text h2 {
        font-size: 22px;
        margin-top: 35px;
        margin-bottom: 20px;
    }

    .blog-post__text h3 {
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .blog-post__text p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .blog-post__text li {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 12px;
    }

    .blog-post__highlight {
        margin: 30px 0;
        border-radius: 12px;
    }

    .blog-post__cta {
        padding: 35px 25px;
        border-radius: 12px;
        margin-bottom: 30px;
    }

    .blog-post__cta h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .blog-post__cta p {
        font-size: 15px;
        margin-bottom: 25px;
        line-height: 1.5;
    }

    .blog-post__back-link {
        font-size: 15px;
    }
}