/* Basic Reset */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* Typography */
body {
  margin: 0;
  background-color: #f8f9fa;
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  color: #ffffff;
  letter-spacing: 0.015em;
}


h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
h2 small {
  font-weight: 400;
}

/* Container */
.site-container {
  max-width: 100%;
  padding: 0;
}

/*************************
 * Announcement bar
 *************************/
.announcement-bar {
  background-color: rgba(2, 98, 149, 0.15);
  color: #01466b;
  font-size: 14px;
  font-weight: 600;
  padding: 0.4rem 1rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.announcement-bar p {
  display: inline-block;
  animation: scroll-left 15s linear infinite;
  margin: 0;
}
.announcement-bar p span {
  margin: 0 0.5rem;
}

.announcement-bar p .dot {
  margin: 0 0.5rem;
}


/* Анимация прокрутки */
@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}


header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 160px;
  margin: 0 auto;
  padding-top: 10px;
}

.logo img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}


.family-text {
  margin-top: 0;
}

.family-text p {
  margin: 0.25rem 0;
  font-size: 14px;
  color: white;
  font-weight: 500;
}

.hero-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


/* Адаптация под планшеты и телефоны */
@media (max-width: 768px) {
  .hero-text {
    width: 80%;
    text-align: center;
    margin: 30px auto 0;
  }
}
  
.top-header {
  background-image: url(images/back4.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}
  
.top-header h1 {
  text-decoration: none;
  margin: 0.5rem 0;
  margin-top: 1rem; /* увеличь до 1.5rem или 2rem по желанию */
  margin-bottom: 0.3rem; /* уменьшить отступ снизу */
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  color: #ffffff;
  letter-spacing: 0.015em;
}
.top-header h2 {
  margin: 0.25rem; /* уменьшить отступ сверху */
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  color: #ffffff;
  letter-spacing: 0.015em;
}

.top-header small {
  font-weight: 400;
  font-size: 1rem;
}
.top-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  width: 100%;
}

.contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 300px;
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

.contact-block a:hover {
  color: #209cc0;
  transition: color 0.2s ease;
}
.social-icons a i {
  font-size: 32px; 
  margin-top: 0.7rem;
  color: #ffffff;
}

.social-icons a {
  text-decoration: none;
}
.contact-item i,
.social-icons a i {
  transition: transform 0.2s ease;
}
.social-icons a i:hover {
  color: #209cc0;
  transition: color 0.2s ease;
}
.contact-item i:hover,
.social-icons a i:hover {
  transform: scale(1.5); /* Увеличение на 30% */
}

.phone-item {
  text-decoration: none;
  margin: 0.5rem 0;
  font-family: 'Inter', sans-serif;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  font-size: 23px;
  color: #ffffff;
  letter-spacing: 0.015em;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.phone-item:hover {
  transform: scale(1.1); /* Увеличение на 10% */
}

.phone-item i {
font-size: 28px;        
margin-right: 10px;        
vertical-align: middle;   
}

.mail-item {
  text-decoration: none;
  margin: 0.25rem 0;
  font-family: 'Inter', sans-serif;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.015em;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.mail-item:hover {
  transform: scale(1.1); /* Увеличение на 10% */
}

.mail-item i {
  font-size: 22px;        
  margin-right: 0.5rem;        
  vertical-align: middle;   
}

.contact-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
}

.social-icons {
  display: flex;
  justify-content: flex-start;
  gap: 1.7rem;
  margin-top: 0.5rem;
}

/*************************
 * Services section
 *************************/
.services {
  background-image: url(images/back1.png);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
}

.service {
  background-color: white;
  border-radius: 10px;
  flex: 1 1 calc(14.28% - 1rem);
  max-width: 350px;
  min-width: 110px;
  text-align: center;
  text-decoration: none;
  color: rgb(43, 90, 129);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
  overflow: hidden;
}

.service:hover {
  transform: translateY(-5px);
}

.service img {
  width: 100%;
  height: auto;
  display: block;
}

.service p {
  margin: 0;
  padding: 1rem;
  font-size: 22px;
  font-weight: bold;
}

/*************************
 * Hero section
 *************************/
.hero {
  min-height: 200px;
  background-image: url(images/back3.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 3rem 1rem 3rem;
  color: white;
}


.hero h1 {
  font-size: 38px;
  letter-spacing: 0.1rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 32px;
  font-weight: 500;
  font-style: italic;
  color: rgb(189, 220, 230);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/*************************
 * Two-column layout with form and carousel
 *************************/
.two-column-layout {
  display: flex;
  justify-content: center;
  align-items: stretch; /* ВАЖНО: тянет обе колонки до одинаковой высоты */
  gap: 2rem;
  flex-wrap: wrap;
  padding: 0;
}

.column {
  flex: 1 1 50%; /* both columns take half width */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-form,
.carousel-section {
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .two-column-layout {
    flex-direction: column;
    gap: 40px;
  }
  .column {
    width: 100%;
    flex: none;
  }
}

/*************************
 * Form styles
 *************************/
.quote-form {
  height: 400px;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  padding: 0.5rem;
} 

.quote-form h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #000;
  text-align: center;
  font-size: 22px;
  margin: 0;
  padding: 0.75rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

form {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}


form input, form select, form textarea {
  display: block;
  width: 100%;
  padding: 0.5rem;
  margin: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
}
form button {
  background-color: rgb(187, 16, 16);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  border-radius: 10px;
  font-size: 1.25rem;
  margin-top: 0.5rem;
}

/*************************
 * Carousel styles
 *************************/
.carousel-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  height: 400px;
}

.carousel-section h2 {
  font-size: 22px;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #026295;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}



.beer-slider {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 300px; /* или то же значение, что у max-height у картинки */  
  border: 4px solid white;     /* Белая рамка */
  border-radius: 8px;          /* (опционально) скруглённые углы */
  overflow: hidden;            /* чтобы скругление обрезало содержимое */
  box-sizing: border-box;
  touch-action: none;
  cursor: pointer;
}

.before-img,
.after-img {
  display: block;
  width: 100%;
  height: 100%; /* или 100% если используешь height */
  object-fit: cover;
  max-height: 300px;
}

.beer-reveal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 50% 0 0);
  z-index: 2;
  pointer-events: none;
}

.beer-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; /* Толщина линии */
  height: 300px;
  background-color: #ffffff; /* Белая линия — можно изменить */
  z-index: 20; /* Поверх изображений */
  pointer-events: none;
  border-radius: 0px;
}

.beer-handle::before,
.beer-handle::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* ◀ Левая */
.beer-handle::before {
  left: -12px;
  border-width: 8px 10px 8px 0;
  border-color: transparent white transparent transparent;
}

/* ▶ Правая */
.beer-handle::after {
  right: -12px;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent white;
}

.carousel-viewport {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding-left: 1rem;
  padding-right: 1rem;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%; /* трек будет растягиваться под flex-контент */
}
.carousel-slide {
  display: flex; /* ОБЯЗАТЕЛЬНО */
  justify-content: center;
  align-items: center;
  transition: transform 0.5s ease-in-out;
  min-width: 100%;
  box-sizing: border-box;
}


/* Кнопки */
.carousel-btn {
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
}

.carousel-btn::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
}

.carousel-btn.prev::before {
  border-width: 10px 14px 10px 0;
  border-color: transparent #026295 transparent transparent;
  margin-left: -3px;
}

.carousel-btn.next::before {
  border-width: 10px 0 10px 14px;
  border-color: transparent transparent transparent #026295;
  margin-right: -3px;
}

.carousel-btn.prev {
  left: 20px; /* или даже 5px, если хочешь ещё ближе */
}

.carousel-btn.next {
  right: 20px;
}
@media (max-width: 500px) {
  .carousel-btn.prev { left: 5px; }
  .carousel-btn.next { right: 5px; }
}

/*************************
 * Testimonial styles
 *************************/
.testimonial-section {
  margin-top: 0;
  padding-top: 0;
}
.two-column-layout {
  margin-bottom: 0;
  padding-bottom: 0;
}

.two-column-and-reviews {
  background-color: rgba(2, 98, 149, 0.15);
  margin: 0;
  padding: 2rem;
}

.two-column-layout,
.testimonial-section {
  background: transparent; /* ❗ чтобы фон не перекрывал */
  margin: 0;
  padding: 0;
}
.testimonial-section {
  padding-bottom: 2rem;
}

.testimonial-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}


.testimonial-window {
  overflow: hidden;
  flex-grow: 1;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.testimonial-card {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 0.5rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


.testimonial-heading {
  position: relative;
  padding-left: 50px; /* отступ от кавычки */
  z-index: 1;
  padding-top: 3.5rem;
}

.testimonial-heading::before {
  content: "“";
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 300px;
  color: #026295;
  opacity: 0.15;
  font-weight: bold;
  z-index: 0;
  pointer-events: none;
  line-height: 1;
  padding-top: 1.5rem;
  padding-left: 1.5rem;
}

.testimonial-heading h3 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  color: #026295;
  line-height: 1.1;
  font-style: italic;
  padding-left: 1rem;
}


.testimonial-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-left: 4rem; /* ✅ отступ, чтобы текст не шел под кавычкой */
  margin-right: 2rem;
}


.testimonial-author {
  font-style: italic;
  color: #026295;
  text-align: right;
  font-weight: 500;
  margin-bottom: 1rem;
  margin-right: 1rem;
}

.testimonial-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.testimonial-btn.prev {
  left: 10px;
}

.testimonial-btn.next {
  right: 10px;
}

.testimonial-header {
  padding: 0 20px;
  text-align: center; /* если нужно по центру */
  font-size: 22px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

h2 span {
  color: #026295; /* цвет для WHAT и SAY */
}

h2 strong {
  color: rgb(187, 16, 16); 
}


@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }


  .logo h2 {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .contact-info {
    align-items: center;
    text-align: center;
    margin-top: 1rem;
  }

  .phone-item,
  .mail-item {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
    padding-left: 0;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
  }

  .social-icons a i {
    font-size: 26px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
  .cta-button {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    margin-top: 1.5rem;
    border-radius: 6px;
    width: auto;
    display: inline-block;
  }
}

/* FAQ Section */
.faq-section {
  background-color: rgba(2, 98, 149, 0.15);
  color: rgb(0, 0, 0);
  padding: 0.25rem 1rem;
  margin: 0 auto;
}
.faq-section h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
  margin: 0rem 0 1.5rem;
  text-transform: uppercase;
  color: #026295;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.faq-item {
  background: #ffffff;
  color: #003b5c;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.open {
  background: #ffffff; /* светло-голубой при раскрытии */
}

.faq-question {
  background: none;
  border: none;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  width: 100%;
  cursor: pointer;
  padding: 1rem 2rem 1rem 1rem;
  position: relative;
  color: #01466b;
}

.faq-question::after {
  content: "\25BA";
  font-size: 18px;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
  color: #026295;
}

.faq-item.open .faq-question::after {
  transform: translateY(-50%) rotate(90deg);
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 16px;
  color: #1b1b1b;
  padding: 0 1rem;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0.5rem 1rem 1rem;
}

/* CTA Buttons */
.cta-button {
  display: block;
  margin: 0 auto 0;
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
  font-weight: bold;
  background-color: rgb(187, 16, 16);
  color: rgb(255, 255, 255);
  border: 2px solid rgb(255, 255, 255);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.cta-button:hover {
  background-color: #a71d1d;
  transform: scale(1.05);
}
.cta-button.cta-secondary {
  font-size: 24px; /* или любой другой размер */
  text-decoration: none;  
  margin-top: 2rem;
  margin-bottom: 0;
  padding: 0.75rem 0.25rem;
  border-radius: 6px;
  max-width: 500px;
  }

@media (max-width: 768px) {
  .service {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .service {
    width: 90%;
  }
}

/*************************
 * Footer
 *************************/
.site-footer {
  background-color: #01466b;
  color: #ffffff;
  padding: 2rem 1rem;
  font-size: 15px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-block {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-block h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 1rem;
  font-weight: bold;
}

.footer-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-block ul li {
  margin-bottom: 0.5rem;
}

.footer-block ul li a {
  color: #f0faff;
  text-decoration: none;
}

.footer-block ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.logo-block img {
  max-width: 150px;
  margin-bottom: 0.5rem;
}
.logo-block p {
  margin: 0.3rem 0;
  color: #cccccc;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-block {
    width: 100%;
  }
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 14px;
}

.footer-bottom .copyright {
  color: #aaa;
}

.footer-socials a {
  color: #ccc;
  margin-left: 1rem;
  font-size: 20px;
  transition: color 0.2s ease;
}

.footer-socials a:hover {
  color: #ffffff;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-socials a {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}

/*************************
 * Sticky buttons
 *************************/
.sticky-quote-btn {
  position: fixed;
  bottom: 80px;
  left: 20px;
  background-color: #c62828;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 999;
  transition: background 0.3s ease, transform 0.2s ease, opacity 0.3s ease;
  opacity: 1;
  border: 1px solid rgba(255,255,255,0.2)
}
.sticky-quote-btn:hover {
  background-color: #a71d1d;
  transform: scale(1.05);
}
.hidden {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 600px) {
  .sticky-quote-btn {
    font-size: 14px;
    padding: 10px 14px;
    bottom: 100px;
    left: 15px;
  }
}

.sticky-home-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: rgba(2, 98, 149, 0.5);
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: background 0.3s ease, transform 0.2s ease, opacity 0.3s ease;
    opacity: 1;
    border: 1px solid rgba(255,255,255,0.2);
}
.sticky-home-btn:hover {
    background-color: #006297;
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(2,98,149,0.5);
}
.hidden {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 600px) {
  .sticky-home-btn {
    font-size: 14px;
    padding: 10px 14px;
    bottom: 100px; /* Поднимаем выше, чтобы не мешала браузерной навигации */
    right: 15px;
  }
}

/*************************
 * Utility classes & responsive rules
 *************************/
html {
  scroll-behavior: smooth;
}
@media (max-width: 768px) {
  .top-header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 0;
  }

  .logo {
    max-width: 140px;
    padding-top: 5px;
  }

  .hero-text {
    text-align: center;
    margin-top: 0;
  }

  .hero-text h1 {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 8px;
  }
  .contact-info {
    margin: 0;
  }

  .contact-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    text-align: center;
    gap: 0px;
  }

  .cta-button {
    width: 90%;
    font-size: 16px;
  }
  .social-icons {
    margin-top: 0;
  }
  .phone-item {
    margin: 0;
  }
  .mail-item {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .services img {
    display: none;
  }

  .services {
    padding: 15px;
    text-align: center;
  }

  .services p {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-block {
    margin-bottom: 0;
  }

  .logo-block img {
    max-width: 120px;
  }

  .footer-block h4 {
    margin-top: 0;
    font-size: 15px;
  }

  .footer-block ul li {
    margin-bottom: 0;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    gap: 10px;
    font-size: 13px;
    padding-bottom: 20px;
  }
}
