@charset "UTF-8";


body {
    font-family: 'Rubik', sans-serif;
    position: relative;
}

a {
    color: #6FA4FF;
}

a:hover,
a:focus {
    color: #d6619c;
}

h1 {
    font-size: 60px;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 45px;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

h3 {
    color: #466388;
    font-size: 33px;
    font-weight: 500;
}

h4 {
    font-size: 20px;
    font-weight: 500;
    color: #466388;
}

h5 {
    font-size: 28px;
    font-weight: 300;
    color: #466388;
    margin-bottom: 0.7rem;
}

p {
    color: #959094;
}

p.lead {
    color: #e38cb7;
    margin-bottom: 2rem;
}

.text-primary {
    color: #e38cb7 !important;
}

.btn {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 0.375rem 1.35rem;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    color: #d6619c;
}

.btn-primary {
    border-radius: 3px;
    background-image: -moz-linear-gradient( 122deg, #e54595 0%, #fd378e 100%);
    background-image: -webkit-linear-gradient( 122deg, #e54595 0%, #fd378e 100%);
    background-image: -ms-linear-gradient( 122deg, #e54595 0%, #fd378e 100%);
    background-image: linear-gradient( 122deg, #e54595 0%, #fd378e 100%);
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    padding: 0.6rem 2rem;
    border: 0;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not([disabled]):not(.disabled).active,
.btn-primary:not([disabled]):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    background-image: linear-gradient( 122deg, #fd378e 0%, #e54595 100%);
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.3);
    color: #FFF;
}

.btn-light {
    border-radius: 3px;
    background: #FFF;
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.26);
    font-size: 14px;
    font-weight: 500;
    color: #633991;
    margin: 0.5rem;
    padding: 0.7rem 1.6rem;
    line-height: 1.8;
}

.btn-group-lg>.btn,
.btn-lg {
    padding: 0.8rem 1rem;
    font-size: 15px;
}

.light-bg {
    background-color: #faf6fb;
}

.section {
    padding: 20px 0 10px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

@media (max-width:767px) {
    h1 {
        font-size: 40px;
    }
    h2 {
        font-size: 30px;
    }
}


/* NAVBAR
----------------------*/

.nav-menu {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-menu.is-scrolling,
.nav-menu.menu-is-open {
    background-color: rgb(74, 13, 143);
    background: -moz-linear-gradient(135deg, rgba(50, 55, 72, 1) 0%, rgba(70, 99, 136, 1) 100%);
    background: -webkit-linear-gradient(135deg, rgba(50, 55, 72, 1) 0%, rgba(70, 99, 136, 1) 100%);
    background: linear-gradient(135deg, rgba(50, 55, 72, 1) 0%, rgba(70, 99, 136, 1) 100%);
    -webkit-box-shadow: 0px 5px 23px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 5px 23px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 23px 0px rgba(0, 0, 0, 0.1);
}

.nav-menu.is-scrolling {
    padding: 0;
}

.navbar-nav .nav-link {
    position: relative;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1rem;
        padding-left: 1rem;
        font-size: 14px;
    }
    .navbar-nav>.nav-item>.nav-link.active:after {
        content: "";
        /* border-bottom: 2px solid #6FA4FF; */
        left: 1rem;
        right: 1rem;
        bottom: 5px;
        height: 1px;
        position: absolute;
    }
}

@media (max-width:991px) {
    .navbar-nav.is-scrolling {
        padding-bottom: 1rem;
    }
    .navbar-nav .nav-item {
        text-align: center;
    }
}


/* HERO
----------------------*/

header {
    padding: 100px 0 0;
    text-align: center;
    color: #FFF;
}

.bg-gradient {
    background-image: -moz-linear-gradient( 135deg, rgba(50, 55, 72, 1) 0%, rgba(70, 99, 136, 1) 100%);
    background-image: -webkit-linear-gradient( 135deg, rgba(50, 55, 72, 1) 0%, rgba(70, 99, 136, 1) 100%);
    background-image: -ms-linear-gradient( 135deg, rgba(50, 55, 72, 1) 0%, rgba(70, 99, 136, 1) 100%);
    background-image: linear-gradient( 135deg, rgba(50, 55, 72, 1) 0%, rgba(70, 99, 136, 1) 100%);
}

.tagline {
    font-size: 23px;
    font-weight: 300;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.img-holder {
    height: 0;
    padding-bottom: 33%;
    overflow: hidden;
}

@media (max-width:1200px) {
    .img-holder {
        padding-bottom: 50%;
    }
}

@media (max-width:767px) {
    .tagline {
        font-size: 17px;
    }
    .img-holder {
        padding-bottom: 100%;
    }
}


/* FEATURES
----------------------*/

.row {
    display: flex;
    width: 100%;
}

.col-lg-4 {
    margin-top: 0.8em;
    flex: 1;
}

.gradient-fill:before {
    color: #323748;
    background: -moz-linear-gradient(top, #466388 0%, #323748 100%);
    background: -webkit-linear-gradient(top, #466388 0%, #323748 100%);
    background: linear-gradient(to bottom, #466388 0%, #323748 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card.features {
    border: 0;
    border-radius: 3px;
    box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

@media (max-width:991px) {
    .card.features {
        margin-bottom: 2rem;
    }
    [class^="col-"]:last-child .card.features {
        margin-bottom: 0;
    }
}

.card.features:before {
    content: "";
    position: absolute;
    width: 3px;
    color: #323748;
    background: -moz-linear-gradient(top, #466388 0%, #323748 100%);
    background: -webkit-linear-gradient(top, #466388 0%, #323748 100%);
    background: linear-gradient(to bottom, #466388 0%, #323748 100%);
    top: 0;
    bottom: 0;
    left: 0;
}

.card-text {
    font-size: 14px;
}

.card.features:hover {
    transform: translateY(-3px);
    -moz-box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.08);
}

.box-icon {
    box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.14);
    padding: 10px;
    width: 70px;
    border-radius: 3px;
    margin-bottom: 1.5rem;
    background-color: #FFF;
}

.circle-icon {
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
    padding: 10px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    background-color: #FFF;
    color: #466388;
    font-size: 48px;
    text-align: center;
    line-height: 80px;
    font-weight: 300;
    transition: all 0.3s ease;
}

@media (max-width:992px) {
    .circle-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        line-height: 50px;
    }
}

.ui-steps li:hover .circle-icon {
    background-image: -moz-linear-gradient( 122deg, #323748 0%, #466388 100%);
    background-image: -webkit-linear-gradient( 122deg, #323748 0%, #466388 100%);
    background-image: -ms-linear-gradient( 122deg, #323748 0%, #466388 100%);
    background-image: linear-gradient( 122deg, #323748 0%, #466388 100%);
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.09);
    color: #FFF;
}

.ui-steps li {
    padding: 15px 0;
}

.ui-steps li:not(:last-child) {
    border-bottom: 1px solid #f8e3f0;
}


/*  TABS
----------------------*/

.tab-content {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    background-color: #FFF;
    box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.04);
    padding: 3rem;
}

@media (max-width:992px) {
    .tab-content {
        padding: 1.5rem;
    }
}

.tab-content p {
    line-height: 1.8;
}

.tab-content h2 {
    margin-bottom: 0.5rem;
}

.nav-tabs {
    border-bottom: 0;
}

.nav-tabs .nav-item .nav-link,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    padding: 1rem 1rem;
    border-color: #faf6fb #faf6fb #FFF;
    font-size: 19px;
    color: #b5a4c8;
    background: #f5eff7;
}

.nav-tabs .nav-link.active {
    background: #FFF;
    border-top-width: 3px;
    border-color: #ce75b4 #faf6fb #FFF;
    color: #633991;
}


/*  TESTIMONIALS
----------------------*/

.owl-carousel .owl-item img.client-img {
    width: 110px;
    margin: 30px auto;
    border-radius: 50%;
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
}

.testimonials-single {
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
}

.blockquote {
    color: #7a767a;
    font-weight: 300;
}

.owl-next.disabled,
.owl-prev.disabled {
    opacity: 0.5;
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-prev {
    left: 0;
}

.owl-next {
    right: 0;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 60px;
}

.owl-theme .owl-dots .owl-dot span {
    background: #e7d9eb;
    width: 35px;
    height: 8px;
    border-radius: 10px;
    transition: all 0.3s ease-in;
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: #6FA4FF;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: #6FA4FF;
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
}


/*  IMAGE GALLERY
----------------------*/

.img-gallery .owl-item {
    /* box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07); */
    transform: scale(0.8);
    transition: all 0.3s ease-in;
}

.img-gallery img {
    border-radius: 25px;
}

.img-gallery .owl-item.center {
    transform: scale(1);
}




.btn-light img {
    margin-right: 0.4rem;
    vertical-align: text-bottom;
}


/*  FOOTER
----------------------*/

.social-icons {
    text-align: right;
}

.social-icons a {
    background-color: #FFF;
    box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
    width: 50px;
    height: 50px;
    display: inline-block;
    text-align: center;
    line-height: 50px;
    margin: 0 0.3rem;
    border-radius: 5px;
    color: #466388;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    text-decoration: none;
    color: #e38cb7;
}

@media (max-width:991px) {
    .social-icons {
        text-align: center;
        margin-top: 2rem;
    }
}

.flag-icon {
  width: 100%;
  height: 100%;
  display: inline-block;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-width: 1px;
  border-style: solid;
  border-color: #f4f4f4;

}
.flag-wrapper {
  width: 32px;
  height: 24px;
  margin: 8px;
}
.flag-box {
  display: flex;
  flex-wrap: wrap;
  place-content: center;
  place-self: center;
  place-items: center;
  grid-template-columns: repeat(auto-fit, minmax(50px, min-content) );
  grid-auto-columns: auto;
}

.flag-icon-gb {
  background-image: url(../flags/4x3/gb.svg);
}
.flag-icon-ua {
  background-image: url(../flags/4x3/ua.svg);
}
.flag-icon-ru {
  background-image: url(../flags/4x3/ru.svg);
}
.flag-icon-es {
  background-image: url(../flags/4x3/es.svg);
}
.flag-icon-de {
  background-image: url(../flags/4x3/de.svg);
}
.flag-icon-fr {
  background-image: url(../flags/4x3/fr.svg);
}
.flag-icon-pt {
  background-image: url(../flags/4x3/pt.svg);
}
.flag-icon-pl {
  background-image: url(../flags/4x3/pl.svg);
}
.flag-icon-by {
  background-image: url(../flags/4x3/by.svg);
}
.flag-icon-it {
  background-image: url(../flags/4x3/it.svg);
}
.flag-icon-tr {
  background-image: url(../flags/4x3/tr.svg);
}
.flag-icon-pl {
  background-image: url(../flags/4x3/pl.svg);
}
.flag-icon-ro {
  background-image: url(../flags/4x3/ro.svg);
}
.flag-icon-ja {
  background-image: url(../flags/4x3/jp.svg);
}
.flag-icon-ko {
  background-image: url(../flags/4x3/kr.svg);
}
.flag-icon-zh {
  background-image: url(../flags/4x3/cn.svg);
}



/* Додаткові стилі з index.html */
header.bg-gradient {
  background: linear-gradient(302deg, #1f6b4f 0%, #0f3a5a 100%) !important;
}
header.bg-gradient h2 {
  color: #fff !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
header.bg-gradient p {
  color: #f0f0f0 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
header.bg-gradient .tagline {
  color: #f0f0f0 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.img-gallery {
  padding: 2rem 0;
  overflow: visible;
}
.img-gallery img {
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(31,107,79,0.15);
  transition: all 0.3s ease;
  max-width: 100%;
  height: auto;
}
.img-gallery img:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(31,107,79,0.25);
}
.img-gallery .owl-item {
  padding: 0.5rem;
}
.img-gallery .owl-item.center {
  overflow: visible;
}
.img-gallery .owl-item.center img {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(31,107,79,0.2);
  border-radius: 1rem;
  margin: 1em 0;
}
@media (max-width: 768px) {
  .img-gallery img {
    border-radius: 0.5rem;
  }
}
#contact {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(31,107,79,0.1);
  margin: 2rem 0;
  padding: 2rem 0;
}
#contact .container {
  padding: 0 1rem;
}
#contact p {
  color: #0f3a5a;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
#contact a {
  color: #1f6b4f;
  text-decoration: none;
  transition: color 0.3s ease;
}
#contact a:hover {
  color: #0f3a5a;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(302deg, #1f6b4f 0%, #0f3a5a 100%);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(31,107,79,0.3);
}
.social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(31,107,79,0.4);
  color: #fff;
}
.social-icons span {
  font-size: 1.2rem;
  color: #fff;
}
@media (max-width: 768px) {
  #contact {
    margin: 1rem 0;
    padding: 1.5rem 0;
  }
  .social-icons {
    gap: 1rem;
  }
  .social-icons a {
    width: 2.5rem;
    height: 2.5rem;
  }
}
footer {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(31,107,79,0.1);
  margin: 2rem 0;
  padding: 2rem 0;
}
footer .flag-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
footer .flag-wrapper {
  margin: 0;
}
footer .flag-icon {
  /* width: 2rem;
  height: 2rem; */
  border-radius: 0.25rem;
  transition: transform 0.2s ease;
}
footer .flag-icon:hover {
  transform: scale(1.1);
}
footer p {
  color: #0f3a5a;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
footer a {
  color: #1f6b4f;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}
footer a:hover {
  color: #0f3a5a;
}
/* Стилі для кнопок App Store та Google Play */
.btn {
  border-radius: 1rem;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem;
  box-shadow: 0 4px 16px rgba(31,107,79,0.1);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(31,107,79,0.15);
  text-decoration: none;
}
.btn img {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.3s ease;
}
.btn:hover img {
  transform: scale(1.1);
}
.btn-light {
  background: linear-gradient(302deg, #ffffff 0%, #f8f9fa 100%);
  color: #1f6b4f;
  border: 2px solid #e9ecef;
}
.btn-light:hover {
  background: linear-gradient(302deg, #ffffff 0%, #e9ecef 100%);
  color: #0f3a5a;
  border-color: #1f6b4f;
}
@media (max-width: 768px) {
  footer {
    margin: 1rem 0;
    padding: 1.5rem 0;
  }
  footer .flag-icon {
    /* width: 1.5rem;
    height: 1.5rem; */
  }
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    margin: 0.3rem;
  }
  .btn img {
    width: 1.3rem;
    height: 1.3rem;
  }
}
/* Додаткові стилі для повної адаптивності */
@media (max-width: 576px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  header.bg-gradient h2 {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  header.bg-gradient .tagline {
    font-size: 1rem;
    line-height: 1.4;
  }
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  .btn img {
    width: 1.2rem;
    height: 1.2rem;
  }
  .section-title h3 {
    font-size: 1.5rem;
  }
  .card.features {
    margin-bottom: 1rem;
  }
  .ui-steps li {
    margin-bottom: 1.5rem;
  }
  .ui-steps .circle-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
  .img-gallery {
    padding: 1rem 0;
  }
  .img-gallery img {
    border-radius: 0.5rem;
  }
  #contact {
    margin: 1rem 0;
    padding: 1rem 0;
  }
  #contact p {
    font-size: 1rem;
  }
  .social-icons {
    gap: 0.8rem;
  }
  .social-icons a {
    width: 2.2rem;
    height: 2.2rem;
  }
  footer {
    margin: 1rem 0;
    padding: 1rem 0;
  }
  footer .flag-icon {
    /* width: 1.3rem;
    height: 1.3rem; */
  }
  footer p {
    font-size: 0.8rem;
  }
  footer a {
    font-size: 0.8rem;
  }
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    margin: 0.2rem;
  }
  .btn img {
    width: 1.1rem;
    height: 1.1rem;
  }
}
/* Стилі для секції Features */
.card.features {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(31,107,79,0.1);
  border: none;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  overflow: hidden;
}
.card.features:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(31,107,79,0.15);
}
.card.features .card-body {
  padding: 2rem;
}
.card.features .media {
  align-items: flex-start;
}
.card.features .gradient-fill {
  background: linear-gradient(302deg, #1f6b4f 0%, #0f3a5a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}
.card.features .card-title {
  color: #1f6b4f;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}
.card.features .card-text {
  color: #0f3a5a;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.card.features .media-body {
  flex: 1;
}
@media (max-width: 768px) {
  .card.features {
    margin-bottom: 1.5rem;
  }
  .card.features .card-body {
    padding: 1.5rem;
  }
  .card.features .gradient-fill {
    font-size: 2rem;
    margin-right: 0.8rem;
  }
  .card.features .card-title {
    font-size: 1.2rem;
  }
}
@media (max-width: 576px) {
  .card.features .card-body {
    padding: 1.2rem;
  }
  .card.features .gradient-fill {
    font-size: 1.8rem;
    margin-right: 0.6rem;
  }
  .card.features .card-title {
    font-size: 1.1rem;
  }
  .card.features .card-text {
    font-size: 0.95rem;
  }
}
/* Стилі для секції Steps (основний контент) */
.ui-steps {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(31,107,79,0.1);
  padding: 2rem;
  margin: 2rem 0;
}
.ui-steps li {
  background: #f8f9fa;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.ui-steps li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(31,107,79,0.1);
  border-color: #1f6b4f;
  background: #fff;
}
.ui-steps li:last-child {
  margin-bottom: 0;
}
.ui-steps .circle-icon {
  background: linear-gradient(302deg, #1f6b4f 0%, #0f3a5a 100%);
  color: #fff;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(31,107,79,0.3);
}
.ui-steps h5 {
  color: #1f6b4f;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.ui-steps p {
  color: #0f3a5a;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.ui-steps .media {
  align-items: flex-start;
}
.ui-steps .media-body {
  flex: 1;
}
@media (max-width: 768px) {
  .ui-steps {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }
  .ui-steps li {
    padding: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .ui-steps .circle-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
  .ui-steps h5 {
    font-size: 1.1rem;
  }
}
@media (max-width: 576px) {
  .ui-steps {
    padding: 1rem;
    margin: 1rem 0;
  }
  .ui-steps li {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  .ui-steps .circle-icon {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 0.9rem;
  }
  .ui-steps h5 {
    font-size: 1rem;
  }
  .ui-steps p {
    font-size: 0.95rem;
  }
}
/* Стилі для секції Gallery */
#gallery {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(31,107,79,0.1);
  margin: 2rem 0;
  padding: 2rem 0;
}
#gallery .container {
  padding: 0 1rem;
}
#gallery .section-title h3 {
  color: #1f6b4f;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  #gallery {
    margin: 1.5rem 0;
    padding: 1.5rem 0;
  }
}
@media (max-width: 576px) {
  #gallery {
    margin: 1rem 0;
    padding: 1rem 0;
  }
}
/* Стилі для логотипу в header */
.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}


.header-logo img {
  max-width: 200px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.header-logo img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
  .header-logo img {
    max-width: 150px;
  }
}
@media (max-width: 576px) {
  .header-logo img {
    max-width: 120px;
  }
}
/* Стилі для панелі навігації */
.nav-menu {
  background: linear-gradient(302deg, #1f6b4f 0%, #0f3a5a 100%);
  box-shadow: 0 4px 16px rgba(31,107,79,0.2);
  border-bottom: 2px solid rgba(255,255,255,0.1);
}
.navbar-brand img {
  max-height: 40px;
  transition: transform 0.3s ease;
}
.navbar-brand img:hover {
  transform: scale(1.05);
}
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.9) !important;
  font-weight: 500;
  transition: all 0.3s ease;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none !important;
}
.navbar-nav .nav-link:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.navbar-nav .nav-link.active {
  color: #fff !important;
  background: rgba(255,255,255,0.15);
  font-weight: 600;
  text-decoration: none !important;
}
.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 0.5rem;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.25);
}
/* Перевизначення стилів для прокрутки */
.nav-menu.is-scrolling,
.nav-menu.menu-is-open {
  background: linear-gradient(302deg, #1f6b4f 0%, #0f3a5a 100%) !important;
  box-shadow: 0 4px 16px rgba(31,107,79,0.2) !important;
  border-bottom: 2px solid rgba(255,255,255,0.1) !important;
}
/* Стилі для індикаторів галереї */
.owl-theme .owl-dots .owl-dot span {
  background: rgba(31,107,79,0.3);
  width: 35px;
  height: 8px;
  border-radius: 10px;
  transition: all 0.3s ease-in;
}
.owl-theme .owl-dots .owl-dot:hover span {
  background: #1f6b4f;
}
.owl-theme .owl-dots .owl-dot.active span {
  background: #1f6b4f;
  box-shadow: 0px 9px 32px 0px rgba(31,107,79,0.3);
}
@media (max-width: 480px) {
  header.bg-gradient h2 {
    font-size: 1.5rem;
  }
  .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
    text-align: center;
    padding: 0.8rem 1rem;
  }
  .ui-steps .circle-icon {
    width: 2rem;
    height: 2rem;
    font-size: 0.9rem;
  }
  .social-icons a {
    width: 2rem;
    height: 2rem;
  }
  footer .flag-icon {
    /* width: 1.1rem;
    height: 1.1rem; */
  }
}
/* Оновлення типографіки */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}
h1 {
  font-size: 3rem;
  color: #1f6b4f;
  text-shadow: 0 2px 4px rgba(31,107,79,0.1);
}
h2 {
  font-size: 2.5rem;
  color: #1f6b4f;
  text-shadow: 0 2px 4px rgba(31,107,79,0.1);
}
h3 {
  font-size: 2rem;
  color: #0f3a5a;
  font-weight: 500;
}
h4 {
  font-size: 1.5rem;
  color: #0f3a5a;
  font-weight: 500;
}
h5 {
  font-size: 1.25rem;
  color: #1f6b4f;
  font-weight: 500;
}
h6 {
  font-size: 1.1rem;
  color: #466388;
  font-weight: 500;
}
p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #0f3a5a;
  margin-bottom: 1rem;
}
.card-title {
  color: #1f6b4f !important;
  font-weight: 600;
  font-size: 1.3rem;
}
.card-text {
  color: #0f3a5a !important;
  font-size: 1rem;
  line-height: 1.5;
}
.section-title h3 {
  color: #0f3a5a;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}
.ui-steps h5 {
  color: #1f6b4f;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.ui-steps p {
  color: #0f3a5a;
  font-size: 1rem;
  line-height: 1.5;
}
.tagline {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #0f3a5a;
  font-weight: 400;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.3rem;
  }
  h5 {
    font-size: 1.1rem;
  }
  p {
    font-size: 1rem;
  }
  .tagline {
    font-size: 1.1rem;
  }
}







