* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

h2 {
    margin: 0;
    position: relative;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 45px;
    text-align: center;
}

html,
body {
    display: flex;
    flex-direction: column;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    position: relative;

    background: #fdbe33;
}

.header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__items {
    display: flex;
    max-width: 700px;
    width: 100%;
    padding: 10px 0 0;
    justify-content: space-between;
    align-items: center;
}

.header__item {
    display: flex;
    gap: 10px;
}

.header__item i {
    color: #2c3641;
    min-width: 30px;
    line-height: 1;
}

.header__item-content {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.header__item-content h3 {
    margin: 0 0 5px 0;
    color: #030f27;
    font-size: 16px;
    font-weight: 400;
}

.header__item-content p {
    margin: 0;
    color: #030f27;
    font-size: 13px;
    font-weight: 400;
}

.header__bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: #21202f;
    justify-content: space-between;
}

.logo span {
    color: #030f27;
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    width: 25px;
    height: 20px;
    z-index: 1001;
}

.burger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #000;
    transition: 0.3s;
}

/* Меню */
.navigation {
    display: flex;
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.navigation a {
    text-decoration: none;
    color: #f5f1f1;
    text-transform: uppercase;
    font-weight: bold;
}

.btn {
    padding: 10px 20px;
    border-radius: 10px;
    width: fit-content;
    margin: 0 auto;
    display: block;
    outline: none;
    border: 1px solid #fff;
    color: #fff;
    background-color: transparent;
}

/* Мобільна версія */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .navigation {
        position: absolute;
        top: 60px;
        left: 0;
        background: #fff;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .navigation.active {
        display: flex;
    }

    .navigation ul {
        flex-direction: column;
        gap: 15px;
    }
}

.hero__img {
    text-align: center;
    margin-bottom: 15px;
    color: #aa9b12;
    /* або будь-який інший */
}

.hero__img i {
    font-size: 5rem;
}

.header__item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.hero__items {
    display: flex;

}

.hero__item {
    display: flex;
    gap: 25px;
    background: #030f27;
    color: #fdbe33;
    align-items: center;
    padding: 30px;
}

.hero__item:nth-child(2n) {
    display: flex;
    gap: 5px;
    color: #030f27;
    background: #fdbe33;
}

.hero__wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.hero__wrap h2 {}

.hero__wrap p {}



.accordion-header {
    background-color: transparent;
    color: #252424;
    width: 100%;
    cursor: pointer;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #000;
    width: 100%;

    outline: none;
    text-align: left;
    font-size: 18px;
    transition: background 0.3s;
}

.accordion-header:hover {
    background-color: #dab615;
}

.accordion-content {
    background-color: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
}

.accordion-content p {
    margin: 15px 0;
}


.testimonial__card {

    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    text-align: center;

}

.avatar {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.testimonial__card img.avatar {
    width: 80px;
    max-width: 80px;
    min-width: 80px;
}

.review {
    font-style: italic;
    margin-bottom: 10px;
}

.name {
    font-weight: bold;
    color: #333;
}


.heroSwiper,
.hero-slide {
    width: 100%;
    height: 100vh;
}

.hero-slide::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero__slid-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;

    padding: 20px;
    border-radius: 10px;
}

.hero__slid-content h1 {
    font-size: 4rem;
    margin: 10px 0;
}

.hero__slid-content sub {
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
    font-size: 2rem;
    margin: 10px 0;
}


.stats__item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.stats__item i {
    color: #e6e9ec;
    font-size: 68px;
}

.stats__item-content {
    display: flex;
    flex-direction: column;
}

.stats__item-content span:first-child {
    font-size: 35px;
    font-weight: bold;
}

.about {
    padding: 65px 0;
}

.about .container {
    display: flex;
    gap: 20px;
    align-items: center;
}

.about__img {
    max-width: 455px;
}

.about__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__content {
    display: flex;
    flex-direction: column;
}

.sub {
    color: #fdbe33;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 5px;
}

.about__content h2 {
    margin: 0;
    position: relative;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 30px;
}

.about__content p {
    margin-bottom: 16px;
}

.about .btn {
    position: relative;
    margin: 0;
    margin-top: 15px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #030f27;
    border-radius: 0;
    background: #fdbe33;
    transition: .3s;

}

.stats {
    display: flex;
    width: 100%;
    margin-top: 50px;
}

.stats__items {
    display: flex;
    flex: 1;
    align-items: center;
    padding: 60px 30px;
}

.stats__item {
    flex: 1;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.stats__items {
    color: #fdbe33;
    background: #030f27;
}

.stats__items:nth-child(2) {
    color: #030f27;
    background: #fdbe33;
}

.stats__item-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.service {
    padding: 50px 0;
}

.service__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.service__item {
    display: flex;
    flex-direction: column;
}

.service__img {
    position: relative;
    height: 350px;

}

.service__img img {
    height: 100%;
    width: 100%;

    object-fit: cover;
}

.service__img p {
    position: absolute;
    top: 0px;
    opacity: 0;
    text-align: center;
    left: 0px;
    padding: 30px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
}

.service__item:hover p {
    position: absolute;
    top: 0px;
    opacity: 1;
    left: 0px;
    color: #ffffff;
    font-size: 16px;
}

.service__item h3 {
    font-size: 20px;
    background: #030f27;
    font-weight: 700;
    display: block;
    color: #fdbe33;
    padding: 15px 25px;
}

.service__wan {
    padding: 80px 15px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service__wan img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

.service__wan span {
    max-width: 900px;
    margin: 0 auto;
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    color: #fdbe33;
}

.accordion .container {
    display: flex;
    gap: 50px;
    width: 100%;
}

.accordion-item {
    width: 100%;
}

.faq {
    margin: 80px 0;
}

.faq__col1 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-header {
    position: relative;
    padding-right: 30px;
    font-weight: bold;
    cursor: pointer;
    background: #f1f1f1;
    border: none;
    outline: none;
    width: 100%;
    text-align: left;
    font-size: 18px;
}

.accordion-header::after {
    content: "+";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    transition: transform 0.3s ease;
}


.accordion-header.active::after {
    content: "-";
}

.testominal {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.mySwiper {
    flex: 1;
    max-width: 500px;
    padding: 40px;
}

.testominal__img {
    flex: 1;
    display: block;
    max-width: 600px;
    max-height: 500px;
    overflow: hidden;
}

.testominal__top {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testominal__img img {
    width: 100%;
    object-fit: cover;
}

.testominal__wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.testimonial__card img {
    width: 100%;
}

.blog {
    margin-top: 80px;
}

.blog__items {
    display: flex;
    gap: 30px;
}

.blog__item {
    flex: 1;
}

.blog__img img {
    width: 100%;
    object-fit: cover;
    max-height: 400px;
}

.blog h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fdbe33;
    margin-top: -10px;
    padding: 15px 25px;
    background: #030f27;
}

.blog__item {
    background-color: #fbf8f8;
}

.blog p {

    padding: 15px 20px;

}

.footer {
    padding: 50px 20px;
    background-color: #11031d;
}

.footer__items {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.footer__item {
    flex: 1;
}

.footer__item h3 {
    color: #dab615;
    margin-bottom: 15px;
}

.footer li,
.footer a,
.footer p {
    color: #fff;
    margin-bottom: 5px;
}

.footer__nav ul {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
    justify-content: center;

}

.copy {
    text-align: center;
}

.social {
    display: flex;
    gap: 10px;
}

@media screen and (max-width: 768px) {
    .header__items {
        display: none;
    }

    .header__bottom .btn {
        display: none;
    }

    .logo span {
        color: #030f27;
        font-size: 28px;
        text-align: center;
        line-height: 60px;
        font-weight: 700;
    }

    .header__top {
        display: flex;
        padding: 0 20px;
        align-items: center;
        justify-content: center;
    }

    .header {
        position: fixed;
        ещз: 0;
        width: 100%;
        z-index: 999999;
        top: 0;
    }

    .header__bottom {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 0;
        background-color: #21202f;
        justify-content: space-between;
    }

    .burger {
        display: flex;
        right: 16px;
        top: 16px;
        position: absolute;
    }

    .hero__items {
        flex-direction: column;
    }

    .hero__item {
        display: flex;
        gap: 25px;
        background: #030f27;
        color: #fdbe33;
        align-items: center;
        padding: 30px;
        flex-direction: column;
    }

    .stats {
        display: flex;
        width: 100%;
        margin-top: 50px;
        flex-direction: column;
    }

    .stats__items {
        display: flex;
        flex: 1;
        align-items: center;
        padding: 20px 20px;
        flex-direction: column;
    }

    .service__items {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        padding: 0px;
    }

    .accordion .container {
        display: flex;
        gap: 50px;
        width: 100%;
        flex-direction: column;
    }

    .testominal__top {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-direction: column;
    }

    .blog__items {
        display: flex;
        gap: 30px;
        flex-direction: column;
    }

    .footer__items {
        display: flex;
        gap: 20px;
        justify-content: space-between;
        flex-direction: column;
    }

    .testominal {
        margin-top: 100px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding: 0px;
        gap: 0px;
        align-items: center;
    }

    .testimonial__card {
        flex-direction: column;
    }

    .faq {
        margin: 40px 0;
    }

    .about .container {
        display: flex;
        gap: 20px;
        align-items: center;
        flex-direction: column;
    }

    .hero__slid-content h1 {
        font-size: 2rem;
        margin: 10px 0;
    }

    .hero__slid-content sub {
        font-size: 1rem;
        margin: 10px 0;
    }
    .navigation a {
        text-decoration: none;
        color: #1b1a1a;
        font-weight: bold;
    }
}

.header__bottom {
    width: 100%;
    transition: all 0.3s ease;
    z-index: 999;
}

.header__bottom.fixed {
    position: fixed;
    top: 0;
    left: 0;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* необов'язково */
}
.contact__ite i {
    font-size: 44px;
    color: #dbbf20;
    margin-right: 15px;
    flex-shrink: 0;
  }
  .contact__ite {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  .contact__wrap h4 {
    margin: 0;
    color: #dab615;
    font-size: 16px;
  }
  .contact__wrap p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #ece9e9;
  }
  .contact__item p{
    color: #fff;
  }

  .contact{
    padding: 80px 0;
  }
  .contact__items {
    display: flex
;
    gap: 0px;
}
.contact__item{
    display: flex;
    flex: 1;
    flex-direction: column;
}
.contact__item {
    display: flex
;
    padding: 40px;
    background-color: #232b3f;
    flex: 1;
    flex-direction: column;
}
.contact__item:nth-child(2){
background-color: #dbbf20;
}
@media screen and (max-width:768px) {
    .contact__items {
        display: flex
    ;
        gap: 0px;
        flex-direction: column;
    }
}
.terms{
    padding: 90px 0;
}
.terms h1{
   
 font-size: 32px;
 margin-bottom: 20px;
}
.terms h2{
    text-align: start;
 font-size: 28px;
 margin-bottom: 20px;
}
.terms h3{
    text-align: start;
 font-size: 20px;
 margin-bottom: 20px;
}
.terms p{
    margin-bottom: 10px;
}
.terms h4{
    text-align: start;
 font-size: 18px;
 margin-bottom: 20px;
}
.terms ul{
 display: flex;
 flex-direction: column;
 gap: 10px;
 padding-left: 10px;
}
.cookie__banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
  }
  .cookie__banner.hidden {
    display: none;
  }

