body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #fff;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #9d7552;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin-left: 20px;
}

.nav-list a {
    color: #333;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
}
.nav-list a:hover {
    color: #d7a92a;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 2px 0;
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}



.book-btn, .view-btn, .learn-btn {
    background-color: #dabc3a;
    border: none;
    padding: 15px 20px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    border-radius: 1px;
    transition: background-color 0.3s ease;
}

.book-btn:hover, .view-btn:hover, .learn-btn:hover {
    background-color: #a8821a;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
  
    color: #fff;
    text-align: center;
    padding-top: 80px;
    animation: fadeIn 1s ease-in;
}
.hero__list{
    display: flex;
    gap: 50px;
}
.hero ul li{
    text-align: start;
    display: flex;

    gap: 5px;
}

.hero ul {
    flex: 1;
    align-items: flex-start;
    display: flex
;
    gap: 20px;
    flex-wrap: wrap;
    padding-left: 20px;
    list-style: none;
    flex-direction: column;
    align-items: flex-start;
}
.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 20px;
}

.estimate-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
    margin: 0 auto 20px;
}

.estimate-form input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.trusted {
    padding: 20px 0;
    text-align: center;
    background-color: #2a5bd7;
    color: #fff;
    animation: slideUp 1s ease-out;
}

.trusted p {
    font-size: 18px;
    margin-bottom: 10px;
}

.brands {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.brands img {
    height: 30px;
}

.services, .testimonial, .booking-steps, .standards, .stats, .reasons, .reviews, .location, .blog, .faq, .guarantee, .cta {
    padding: 50px 0;
    animation: fadeInUp 1s ease-out;
}

.services h2, .booking-steps h2, .standards h2, .stats h2, .reasons h2, .reviews h2, .location h2, .blog h2, .faq h2, .guarantee h2, .cta h2

 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ad8740;
}
.services p, .reasons p {
    font-size: 18px;
    margin-bottom: 20px;
}
.services .container{
display: flex;
flex-direction: column;
gap: 30px;
align-items: center;
}
.service__items {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service__item {
    text-align: center;
    width: 18%;
}
.service__item i{
    color: #ad8740;
    font-size: 50px;
}
.service__item img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.service__item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.testimonial {
    text-align: center;
}

.testimonial-slider .swiper-slide {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}

.testimonial-slider img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.testimonial-slider p {
    font-size: 16px;
    margin-bottom: 5px;
}

.steps, .standards__items, .reasons-items {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.step, .standards__item, .reasons-item {
    text-align: center;
    width: 30%;
}

.step img, .standards__item img, .reasons-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.step p, .standards__item p, .reasons-item p {
    font-size: 16px;
}

.stats {
    background-color: #2a5bd7;
    color: #fff;
}

.stats-items {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 36px;
    margin-bottom: 5px;
}

.stat p {
    font-size: 16px;
}

.reviews {
    text-align: center;
    background-color: #fff9e5;
}

.reviews-slider .swiper-slide {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.reviews-slider img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.reviews-slider p {
    font-size: 16px;
    margin-bottom: 5px;
}

.location {
    text-align: center;
}

.location p {
    font-size: 18px;
    margin-bottom: 10px;
}

.location img {
    max-width: 100%;
    margin-bottom: 20px;
}

.blog-items {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.blog-item {
    text-align: center;
}

.blog-item img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.blog-item h3 {
    font-size: 24px;
}

.faq {
    text-align: center;
}

.faq__items {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq__item summary {
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq__item summary::-webkit-details-marker {
    display: none;
}

.faq__item[open] summary {
    border-bottom: 1px solid #ccc;
}

.faq__item[open] .plus {
    content: "-";
}

.faq__item .plus {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq__item[open] .plus {
    transform: rotate(45deg);
}

.faq__item p {
    padding: 15px 20px;
    font-size: 16px;
    margin: 0;
}

.guarantee {
    background-color: #fff9e5;
    text-align: center;
}

.guarantee p {
    font-size: 18px;
    margin-bottom: 20px;
}



.footer {
    padding: 50px 0;
    background-color: #896c4f;
    color: #fff;
    text-align: center;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer__logo {
    font-size: 24px;
    font-weight: bold;
}

.footer__links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.footer__links a:hover {
    text-decoration: underline;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #fff;
        width: 100%;
        padding: 20px 0;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        margin: 10px 0;
        text-align: center;
    }

    .burger {
        display: flex;
    }

    .service__items, .steps, .standards__items, .stats-items, .reasons-items, .blog-items {
        flex-direction: column;
        align-items: center;
    }

    .service__item, .step, .standards__item, .stat, .reasons-item, .blog-item {
        width: 80%;
    }

    .hero {
        height: auto;
        padding: 80px 0;
    }

    .hero img {
        position: static;
        max-width: 100%;
    }

    .footer__content {
        flex-direction: column;
        gap: 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.booking-steps{
    background-color: #7b7460;
}
.steps{
    display: flex;
    gap: 50px;
}
.steps__img{
    flex: 1;
}
.steps__img img{
width: 100%;
max-height: 500px;
object-fit: cover;
}
.step{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.step h2{
    color: #fff;
}
.step p{
    color: #fff;
}
.standards__item img {
    width: 100%;
max-height: 500px;
 height: auto;
}
.standards__item h3{
    color: #fff;
}
.standards__item p{
    color: #fff;
}
 .standards__items{
    display: flex
;
    justify-content: center;
    gap: 60px;
    margin-bottom: 70px;
}
.standards{
    padding: 90px 0;
}
.stats {
    background-color: transparent;
    color: #fff;
}
.stats-items {
    display: flex
;
    justify-content: center;
    gap: 70px;
}
.stat h3 {
    margin: 0;
    font-size: 46px;
    margin-bottom: 5px;
}
.location__items{
    display: flex;
    gap: 50px;
}
.location__item{
    flex: 1;
}
.step ul li{
    text-align: start;
    color: #fff;
    margin-bottom: 20px;
}
@media screen and (max-width:768px) {
    .hero__list {
        display: flex
    ;
        gap: 5px;
    }
    .hero h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .location__items {
        display: flex
    ;
        gap: 50px;
        flex-direction: column-reverse;
    }

}
.service__item span{
    display: block;
    margin-top: 40px;
}
.tera{

}
.tera .container{
    display: flex;

    flex-direction: column;
}
.tera .container ul{
    list-style: circle;
}
.tera .container ul li{
    margin-bottom: 10px;
}
.cookie__banner {
    position: fixed;
    bottom: 0;
    width: fit-content;
    background-color: #222;
 
    gap: 20px;
    color: #fff;
    padding: 15px 20px;
    display: flex
;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    font-family: Arial, sans-serif;
    font-size: 14px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.4);
}

  .cookie__banner button {
    background-color: #00c853;
    color: white;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
  }

  .cookie__banner button:hover {
    background-color: #00b248;
  }