.hero {
    position: relative;
    width: 100%;
    height: 90vh;
  }
  a{
    color: inherit;
    text-decoration: none;
  }
  body{
    margin: 0;
    font-family: 'Poppins', sans-serif;
  }
  .hero__slide {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  .hero__content {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    max-width: 600px;
    z-index: 2;
  }
  
  .hero__content span {
    font-size: 14px;
    text-transform: uppercase;
    color: #ffb400;
    font-weight: 600;
    letter-spacing: 2px;
  }
  
  .hero__content h1 {
    font-size: 42px;
    font-weight: 900;
    margin: 20px 0;
    line-height: 1.2;
  }
  .hero__slide {
  position: relative;
  overflow: hidden;
}

.hero__slide::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* полупрозрачный чёрный */
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2; /* поверх затемнения */
  color: #fff; /* белый текст */
}
  
  .btn-orange {
    background-color: #ffb400;
    padding: 14px 25px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    margin-top: 15px;
    transition: background 0.3s ease;
  }
  
  .btn-orange:hover {
    background-color: #e59500;
  }
  
  .swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
  }
  
  .swiper-pagination-bullet-active {
    opacity: 1;
  }
  .top__header {
    font-family: Arial, sans-serif;
    color: #fff;
  }
  
  .top__bar {
    background: #1d1d1d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    flex-wrap: wrap;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
  }
  .logo span {
    color: #f9a825;
  }
  
  .top__info {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .info__block {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
  }
  
  .info__block i {
    color: #f9a825;
    border: 1px solid #f9a825;
    border-radius: 50%;
    padding: 6px;
  }
  
  .info__block span {
    font-size: 11px;
    display: block;
    opacity: 0.6;
  }
  .info__block p {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
  }
  
  .social__icons a {
    background: #444;
    color: white;
    padding: 6px 8px;
    margin-left: 5px;
    border-radius: 50%;
    display: inline-block;
    font-size: 14px;
    transition: 0.3s;
  }
  .social__icons a:hover {
    background: #f9a825;
    color: #000;
  }
  
  /* Nav Bar */
  .main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background: white;
    color: #000;
    flex-wrap: wrap;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
  }
  .nav-links li a {
    display: block;
    padding: 20px 0;
    color: #000;
    text-decoration: none;
    font-weight: bold;
  }
  .nav-links li.active a {
    background: #f9a825;
    padding: 20px 20px;
    color: #fff;
  }
  
  /* Search box */
  .search-box {
    position: relative;
  }
  .search-box input {
    padding: 10px 15px;
    border: none;
    background: #f0f0f0;
    border-radius: 4px;
  }
  .search-box i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    cursor: pointer;
  }
  .container{
    max-width: 1200px;
    margin: 0 auto;
    padding:  0 15px;
  }
  .services {
    padding: 90px 0;
    text-align: center;
  }
  
  .subtitle {
    color: #f9a825;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  
  .title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
  }
  
  .services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px 30px;
    justify-items: start;
  }
  
  .service__item {
    display: flex;
  gap: 20px;
    align-items: flex-start;
    text-align: left;
  }
  
  .services__icon {
    background: #003cb3;
    border-radius: 100%;
    padding: 18px;
    min-width: 45px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
  
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    color: white;
    font-size: 24px;
  }
  
  .service__item h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .service__item p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
  }
  
  .service__item a {
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .service__item a:hover {
    color: #f9a825;
  }
  .about {
    padding: 90px 0;
    background: #f7f7f9;
  }
  
  .about__grid {
    display: flex;

    gap: 40px;
    align-items: center;
  }
  .about__content,
  .about__image{
    flex: 1;
  }
  .about__image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .about__content {
    flex: 1 1 250px;
  }
  
  .subtitle {
    color: #f9a825;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  
  .title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
  }
  
  .desc {
    color: #555;
    margin-bottom: 25px;
  }
  
  .tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .tab__button {
    padding: 10px 20px;
    border: none;
    background: #eee;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .tab__button.active {
    background: #003cb3;
    color: #fff;
  }
  
  .tab__content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  }
  
  .tab__pane {
    display: none;
    color: #444;
    line-height: 1.6;
  }
  
  .tab__pane.active {
    display: block;
  }
  .stats{
    padding: 50px 0;
    background-color: #000;
  }
  .stats__items{
    display: flex;
    gap: 50px;
  }
  .stats__item{
    flex: 1;
    display: flex;
    flex-direction: column;

    align-items: center;
  }
  .stats__item span{
    line-height: 1;
    font-weight: 700;
    font-size: 38px;
    color: #f79f24;
    display: block;
    margin-bottom: 10px;
  }
  .stats__item h4{
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
  }
  .consultation{
    width: 100%;
    background: #f8f8f8;
  }
  
  .consultation .container {
    display: flex;
gap: 0px;
padding: 0;
max-width: 100%;
  }
  
  .consultation__image {
    flex: 1;
    background: #ccc;
  }
  
  .consultation__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .consultation__form {
    flex: 1;
    background-color: #f89b1f;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .consultation__form h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
    margin-bottom: 5px;
  }
  
  .consultation__form h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #111;
  }
  
  .consultation__form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .consultation__form select,
  .consultation__form input,
  .consultation__form textarea {
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    width: auto;
  }
  
  .consultation__form .form-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .consultation__form .form-row input {
    flex: 1;
  }
  
  .consultation__form textarea {
    resize: vertical;
  }
  
  .consultation__form button {
    background-color: #2f2f2f;
    color: #fff;
    border: none;
    padding: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .consultation__form button:hover {
    background-color: #000;
  }
  
  @media (max-width: 768px) {
    .consultation__container {
      flex-direction: column;
    }
  
    .consultation__image,
    .consultation__form {
      flex: 1 1 100%;
    }
  }
  .testimonials {
    background: #f9f9fc;
    padding: 60px 20px;
    text-align: center;
  }
  
  .blog__subtitle {
    text-transform: uppercase;
    font-size: 13px;
    color: #888;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  
  .blog__title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #111;
  }
  
  .testimonial__card {
 
    border-radius: 8px;
    padding: 25px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: left;
    position: relative;
    max-width: 360px;
    margin: auto;
  }
  
  .quote-mark {
    position: absolute;
    top: 6px;
    left: 15px;
    background: #f89b1f;
    color: #fff;
    font-size: 18px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    line-height: 32px;
    text-align: center;
    font-weight: bold;
  }
  .blog__section {
    padding: 60px 0;
    background-color: #f9f9f9;
  }
  .blog__title {
    text-align: center;
    margin-bottom: 40px;
  }
  .blog__title h4 {
    color: #ff9c07;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .blog__title h2 {
    font-weight: 700;
    font-size: 28px;
  }
  .blog__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .blog__item {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    max-width: 350px;
    text-decoration: none;
    color: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .blog__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  .blog__item img {
    width: 100%;
    display: block;
  }
  .blog__content {
    padding: 20px;
  }
  .blog__meta {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  .blog__meta img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
  }
  .blog__meta p {
    margin: 0;
    color: #aaa;
    font-size: 14px;
  }
  .blog__meta .date {
    color: #2f60ff;
  }
  .blog__content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
  }
  .blog__content .highlight {
    color: #ff9c07;
  }
  @media (max-width: 992px) {
    .blog__item {
      max-width: 45%;
    }
  }
  @media (max-width: 600px) {
    .blog__item {
      max-width: 100%;
    }
  }
  
  .testimonial__card p {
    font-size: 15px;
    color: #444;
    margin: 30px 0 20px;
    line-height: 1.6;
  }
  
  .testimonial__user {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .testimonial__user img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .testimonial__user strong {
    font-weight: bold;
    font-size: 16px;
  }
  
  .testimonial__user span {
    font-size: 14px;
    color: #666;
  }
  
  .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
    width: 10px;
    height: 10px;
  }
  
  .swiper-pagination-bullet-active {
    background: #f89b1f;
  }
  .blog {
    padding: 90px 0;
  
  }
  .blog__title {
    text-align: center;
    margin-bottom: 40px;
  }
  .blog__title h4 {
    color: #ff9c07;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .blog__title h2 {
    font-weight: 700;
    font-size: 28px;
  }
  .blog__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .blog__item {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    max-width: 350px;
    text-decoration: none;
    color: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .blog__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  .blog__item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
  .blog__content {
    padding: 20px;
  }
  .blog__meta {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  .blog__meta img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
  }
  .blog__meta p {
    margin: 0;
    color: #aaa;
    font-size: 14px;
  }
  .blog__meta .date {
    color: #747474;
}
  .blog__content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
  }
  .blog__content .highlight {
    color: #ff9c07;
  }
  @media (max-width: 992px) {
    .blog__item {
      max-width: 45%;
    }
  }
  @media (max-width: 600px) {
    .blog__item {
      max-width: 100%;
    }
  }
  .projects {
    padding: 90px 0;
   
  }
  .projects__title {
    text-align: center;
    margin-bottom: 40px;
  }
  .projects__title h4 {
    color: #ff9c07;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .projects__title h2 {
    font-weight: 700;
    font-size: 28px;
  }
  .projects__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
  }
  .project__item {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
  }
  .project__item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }

  .project__item:hover img{
    position: relative;
    z-index: -1;
  
  }
  .project__item:hover{
    background-color: #4c00ff;
  }
  .project__item:hover .project__overlay {
    opacity: 1;
    z-index: 99;
    bottom: 15px;
    left: 20px;
}
  .project__overlay {
    text-align: left;
    opacity: 0;
    position: absolute;

  }
  .icon-circle {
    background-color: #ffa726;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 15px;
  }
  .project__type {
    margin: 0;
    font-size: 14px;
  }
  .project__item h3 {
    margin: 5px 0 0;
    font-size: 18px;
    font-weight: 600;
  }
  @media (max-width: 768px) {
    .projects__grid {
      grid-template-columns: 1fr;
    }
  }
  .footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 0 30px;
    font-size: 15px;
  }
  .footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
    gap: 40px;
  }
  .footer__column h2.logo {
    font-size: 22px;
    color: #fff;
    margin-bottom: 20px;
  }
  .footer__column h2 span {
    color: #ffa726;
  }
  .footer__column h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
  }
  .footer__column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer__column ul li {
    margin-bottom: 10px;
    line-height: 1.6;
  }
  .footer__column ul li i {
    color: #ffa726;
    margin-right: 8px;
  }
  .footer__socials a {
    color: #fff;
    margin-right: 12px;
    font-size: 18px;
    display: inline-block;
    transition: color 0.3s ease;
  }
  .footer__socials a:hover {
    color: #ffa726;
  }
  .footer__bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 14px;
  }
  .footer__bottom i {
    color: #ffa726;
  }
  @media (max-width: 768px) {
    .footer {
      padding: 40px 20px 20px;
    }
    .footer__grid {
      gap: 30px;
    }
  }
  .services__wrapper{
    display: flex;
    gap: 55px;
    margin-bottom: 60px;

  }
  .services__wrap{
    flex: 1;
  }

  .projects.prod .projects__grid {
    display: grid
;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
  .blog.blo .container{
    max-width: 900px;
  }
  .blog.blo .blog__grid {
    display: flex
;
  flex-direction: column;
    gap: 30px;
}
.blog__item{
  max-width: 100%;
}
.post__header h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

.meta {
  font-size: 0.9em;
  color: #888;
}

.post__image img {
  width: 100%;
  margin: 20px 0;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.post__content p {
  line-height: 1.6;
  margin-bottom: 20px;
}

blockquote {
  background: #eee;
  padding: 15px;
  border-left: 5px solid #ff9c07;
  margin: 20px 0;
  font-style: italic;
}

.post__comments {
  margin-top: 40px;
}

.post__comments h3,
.post__form h3 {
  margin-bottom: 20px;
  font-size: 1.5em;
}

.comment {
  display: flex;
  margin-bottom: 20px;
}

.comment img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.comment-content {
  flex: 1;
}

.comment-content strong {
  display: block;
  font-weight: bold;
}

.comment-content a {
  font-size: 0.9em;
  color: #ff9c07;
  text-decoration: none;
  margin-left: 10px;
}

.post__form textarea,
.post__form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.post__form button {
  background-color: #ff9c07;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
}

.post__form button:hover {
  background-color: #e58a00;
}
.post .container{
  max-width: 900px;
}
.post{
  padding: 80px 0;
}
.faq__item {
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  padding: 15px 20px;
  background: #d58000;
  color: #fff;
  font-size: 16px;
  text-align: left;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.faq__question:hover {
  background: #9e6c00;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
  background: #f9f9f9;
}

.faq__answer.open {
  max-height: 500px;
  padding: 20px;
}

.faq__answer p {
  margin: 0;
  line-height: 1.6;
}
.faq{
  padding: 90px 0;
}
.testimonial__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial__item {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.testimonial__item:hover {
  transform: translateY(-5px);
}

.testimonial__message {
  font-style: italic;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial__author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial__author strong {
  font-size: 16px;
}

.testimonial__author span {
  font-size: 14px;
  color: #888;
}
.testimonial{
  padding: 80px 0;
}
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  position: absolute;
  right: 20px;
  top: 15px;
}

.burger span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  display: block;
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  nav .nav-links {
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 50px;
    right: 0;
    gap: 0;
    z-index: 9;
    width: 90%;
    display: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
  }

  nav .nav-links.active {
    display: flex;
  }
}
@media screen and (max-width:768px){
  .stats__items

   {
      display: flex
  ;
      gap: 50px;
      flex-direction: column;
  }
  .consultation .container {
    display: flex
;
    gap: 0px;
    padding: 0;
    max-width: 100%;
    flex-direction: column;
}
.testimonial__card

 {
    border-radius: 8px;
    padding: 25px 0px;
    box-shadow: none;
    text-align: left;
    position: relative;
    max-width:100%;
    margin: auto;
}
.about__grid {
  display: flex
;
  gap: 40px;
  align-items: center;
  flex-direction: column;
}
.services__wrapper {
  display: flex
;
  gap: 25px;
  margin-bottom: 60px;
  flex-direction: column;
}
.projects.prod .projects__grid {
  display: grid
;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
}
} 
.contact-us {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: 'Arial', sans-serif;
}

.contact-us__container {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.contact-us__form,
.contact-us__info {
  flex: 1 1 300px;
  padding: 40px;
}

.contact-us__form {
  background: #fff;
}

.contact-us__info {
  background: #f4a024;
  color: #fff;
}

.contact-us__title {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: bold;
}

.contact-us__row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.contact-us__input,
.contact-us__textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #eee;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
}

.contact-us__row .contact-us__input {
  flex: 1;
  min-width: 45%;
}

.contact-us__textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-us__button {
  background: #f4a024;
  border: none;
  padding: 14px 24px;
  color: white;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.3s;
}

.contact-us__button:hover {
  background: #e2910f;
}

.contact-us__item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 14px;
}

.contact-us__item i {
  background: #fff;
  color: #f4a024;
  padding: 12px;
  border-radius: 50%;
  font-size: 14px;
}
.contact-us{
  padding: 80px 0;
}
.contact-us .container{
  display: flex;
  gap: 55px;
}
@media screen and (max-width:768px) {
  .contact-us .container{
    display: flex;
    gap: 55px;
    flex-direction: column;
  }
}
.terms li{
  margin-bottom: 10px;
}
.cookie__consent {
  position: fixed;
  bottom: 0;
  width: 84%;
  background-color: #222;
  color: #fff;
  padding: 20px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  font-size: 15px;
}

.cookie__consent__text p {
  margin: 0;
  flex: 1;
  line-height: 1.5;
}

.cookie__consent__text a {
  color: #ffa500;
  text-decoration: underline;
}

.cookie__consent__actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-shrink: 0;
}

.cookie__consent__btn {
  background-color: #ffa500;
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie__consent__btn:hover {
  background-color: #e69500;
}

.cookie__consent__btn.secondary {
  background-color: #444;
}

.cookie__consent__btn.secondary:hover {
  background-color: #555;
}

@media (max-width: 768px) {
  .cookie__consent {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie__consent__actions {
    margin-top: 15px;
    width: 100%;
    flex-direction: column;
  }

  .cookie__consent__btn {
    width: 100%;
  }
}