/********** Template CSS **********/
:root {
    --primary: #368f2a;
    --light: #f1f8ff;
    --dark: #111a24;
  --bg-color: #edfcea;
  --accent-color: #368f2a;
  --dark-green: #1e5a19;
  --text-color: #343a40;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --beige: #f9f5eb;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #ffffff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark {
    background-color: var(--dark) !important;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 15px 0;
    color: #ffffff;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-brand p {
    color: #ffffff;
    transition: all 0.3s ease;
}

.navbar-brand:hover p {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-dark {
        padding: 0.5rem 0;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, 0.7);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}

/*** Footer ***/
.footer {
    position: relative;
    background: var(--dark);
    padding: 80px 0 0;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(69, 169, 178, 0.1) 0%, rgba(17, 26, 36, 0) 100%);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-brand a {
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-brand p {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    transition: all 0.3s ease;
}

.footer-brand:hover p {
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    display: inline-block;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary);
    padding-left: 20px;
}

.footer-link:hover::before {
    opacity: 1;
    left: 0;
}

.footer-contact {
    margin-bottom: 30px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-contact-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    color: var(--primary);
}

.footer-contact-item:hover i {
    background: var(--primary);
    transform: rotate(360deg);
}

.footer-legal {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal .footer-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal .footer-link:hover {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .footer {
        padding: 60px 0 0;
    }

    .footer-brand {
        margin-bottom: 40px;
    }

    .footer-contact {
        margin-top: 40px;
    }
}

@media (max-width: 767.98px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer-links {
        margin-top: 30px;
    }

    .footer-contact {
        margin-top: 30px;
    }
}
/*** Newsletter ***/
.newsletter {
    position: relative;
    z-index: 1;
}

/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

@media (max-width: 700px) {
    .cookie-wrapper {
        width: 100%;
    }
}

.cookie-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 380px;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 9999;
    border: 1px solid rgba(69, 169, 178, 0.2);
}

.cookie-wrapper.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-wrapper i {
    display: block;
    text-align: center;
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.cookie-wrapper h2 {
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.cookie-wrapper .data {
    margin-bottom: 20px;
}

.cookie-wrapper .data p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.cookie-wrapper .data p a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.cookie-wrapper .data p a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.cookie-wrapper .data p a:hover::after {
    width: 100%;
}

.cookie-wrapper .buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.cookie-wrapper .cookie-button {
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-wrapper #acceptBtn {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(69, 169, 178, 0.3);
}

.cookie-wrapper #acceptBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(69, 169, 178, 0.4);
}

.cookie-wrapper #declineBtn {
    background-color: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.cookie-wrapper #declineBtn:hover {
    background-color: var(--dark);
    color: white;
    transform: translateY(-2px);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 600px) {
    .cookie-wrapper {
        width: 90%;
        right: 5%;
        bottom: 20px;
        padding: 20px;
    }

    .cookie-wrapper .buttons {
        flex-direction: column;
    }

    .cookie-wrapper .cookie-button {
        width: 100%;
    }
}

.hidden {
    display: none;
}

header i {
    color: #368f2a;
    font-size: 32px;
    text-align: center;
}

header h2 {
    color: #368f2a;
    font-weight: 500;
    text-align: center;
}

.data {
    text-align: center;
}

.data p a {
    color: #368f2a;
    text-decoration: none;
    text-align: center !important;
}

.data p a:hover {
    text-decoration: underline;
}

.buttons {
    padding: 20px 0px;
    text-align: center;
}

.buttons .cookie-button {
    border: 2px solid #368f2a;
    color: #fff;
    padding: 8px 0;
    background: #368f2a;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.5s ease;
    max-width: 150px;
    border-radius: 0;
}

.buttons #acceptBtn:hover {
    background-color: transparent;
    color: #368f2a;
}

#declineBtn {
    background-color: #fff;
    color: #368f2a;
}

#declineBtn:hover {
    background-color: #368f2a;
    color: #fff;
}

/* Footer Style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
    color: white;
    padding: 1rem;
}

.logo {
    font-size: 1.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 21px;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
}

@media (max-width: 578px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #333;
    }

    .nav-links li {
        text-align: center;
        margin: 10px 0;
    }

    .burger {
        display: flex;
    }

    .nav-active {
        display: flex;
    }
}

/* Обертка для hero на странице контактов */
#contact-hero .contact-hero-wrapper {
    background-color: #0a6702;
    color: #edfcea;
    min-height: 50vh;
    position: relative;
}

/* Оверлей, если нужен легкий градиент */
#contact-hero .contact-hero-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(241, 177, 0, 0.7);
    z-index: 1;
}

/* Контент поверх оверлея */
#contact-hero .contact-hero-content {
    position: relative;
    z-index: 2;
}

/* Заголовок и подзаголовок */
#contact-hero h1,
#contact-hero h2 {
    color: #edfcea;
}

/* Темный акцент для подзаголовка */
.text-primary-blue-dark {
    color: #368f2a;
}

/* new styles  */

  /* Блок контактов */
.contacts {
    background-color: var(--white);
  }
  
  .contact-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 1rem;
  }
  
  .contact-text {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
  }
  
  .contact-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
  }
  
  .contact-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .contact-link:hover {
    color: var(--dark-green);
    text-decoration: underline;
  }
  
  .contact-image {
    border-radius: 0.5rem;
    overflow: hidden;
  }
  
  .map-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  }
  
  .google-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
/* new styles  */
/* Загальні стилі */
:root {
  --primary: #368f2a;
  --light: #f1f8ff;
  --dark: #111a24;
  --bg-color: #edfcea;
  --accent-color: #368f2a;
  --dark-green: #1e5a19;
  --text-color: #343a40;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --beige: #f9f5eb;
}

body {
  color: var(--text-color);
  background-color: var(--white);
  line-height: 1.6;
}

/* Утилітарні класи */
.text-primary {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-light-custom {
  background-color: var(--light-bg);
}

.btn-primary-custom {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: background-color 0.3s;
}

.btn-primary-custom:hover {
  background-color: var(--dark-green);
  color: var(--white);
}

/* Стилі для блоку hero */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--dark);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 26, 36, 0.8);
  z-index: 1;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 15px;
}

.hero-title {
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  font-weight: 400;
  opacity: 0.9;
}

/* Медиа запросы для адаптивности */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .btn-primary-custom {
    padding: 10px 20px;
  }
}
/* Стилі для блоку "Почему SMM важен" */
.section-spacing {
  padding: 80px 0;
 }
 
 .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
 }
 

 .text-block {
  margin-bottom: 3rem;
 }
 
 .point-item {
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
 }
 
 .point-icon {
  color: var(--primary);
  font-size: 1.8rem;
  margin-right: 1rem;
  flex-shrink: 0;
 }
 
 .point-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
 }
 
 /* Стилі для блоку "О нас кратко" */
 .about-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
 }
 
 .about-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
 }
 
 .about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 26, 36, 0.9);
  z-index: 1;
 }
 
 .about-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
 }
 
 /* Стилі для блоку "Наши направления" */
 .direction-item {
  padding: 30px 25px;
  margin-bottom: 30px;
  background-color: var(--light-bg);
  transition: transform 0.3s;
 }
 
 .direction-item:hover {
  transform: translateY(-5px);
 }
 
 .direction-icon {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
 }
 
 .direction-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
 }
 
 .direction-description {
  font-size: 1rem;
  color: var(--text-color);
  opacity: 0.9;
 }
 /* Стилі для блоку "Последние статьи" */
.article-card {
  background-color: var(--white);
  margin-bottom: 30px;
  transition: transform 0.3s;
  border: 1px solid #e5e5e5;
 }
 
 .article-card:hover {
  transform: translateY(-5px);
 }
 
 .article-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
 }
 
 .article-content {
  padding: 25px;
  min-height: 470px;
 }
 
 .article-date {
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: block;
 }
 
 .article-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
 }
 
 .article-text {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
 }
 
 .article-link {
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
 }
 
 .article-link:hover {
  color: var(--dark-green);
 }
 
 .article-link .material-icons {
  font-size: 1rem;
  margin-left: 5px;
 }
 
 /* Стилі для блоку "Инструменты для брендов" */
 .tools-section {
  background-color: var(--light-bg);
 }
 
 .tool-list {
  list-style: none;
  padding: 0;
  margin: 0;
 }
 
 .tool-item {
  padding: 15px 0;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: flex-start;
 }
 
 .tool-item:last-child {
  border-bottom: none;
 }
 
 .tool-icon {
  color: var(--primary);
  margin-right: 15px;
  font-size: 1.2rem;
 }
 
 .tool-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
 }
 
 .tool-content p {
  font-size: 0.95rem;
  margin-bottom: 0;
 }
 
 /* Стилі для блоку "Тренды 2025" */
 .trends-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
 }
 
 .trends-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
 }
 
 .trends-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 26, 36, 0.9);
  z-index: 1;
 }
 
 .trends-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
 }
 
 .trend-list {
  list-style: none;
  padding: 0;
  margin: 0;
 }
 
 .trend-item {
  margin-bottom: 25px;
 }
 
 .trend-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
 }
 
 .trend-description {
  font-size: 0.95rem;
  opacity: 0.9;
 }
 /* Стилі для блоку "История проекта" */
.history-section {
  background-color: var(--light-bg);
 }
 
 .history-content {
  margin-bottom: 3rem;
 }
 
 .history-images {
  display: flex;
  gap: 20px;
  margin-top: 2rem;
 }
 
 .history-image {
  width: calc(50% - 10px);
  height: 300px;
  object-fit: cover;
 }
 
 @media (max-width: 768px) {
  .history-images {
    flex-direction: column;
  }
  
  .history-image {
    width: 100%;
    margin-bottom: 15px;
  }
 }
 
 /* Стилі для блоку "Наша команда" */
 .team-section {
  background-color: var(--white);
 }
 
 .team-content {
  max-width: 800px;
  margin: 0 auto;
 }
 
 /* Стилі для блоку "Ценности и принципы" */
 .values-section {
  background-color: var(--dark);
  color: var(--white);
 }
 
 .value-highlight {
  font-weight: 600;
  color: var(--primary);
 }
 /* Стилі для блоку "SMM СТРАТЕГИИ" */
.strategies-section {
  background-color: var(--light);
 }
 
 .strategy-content {
  margin-bottom: 2.5rem;
 }
 
 .strategy-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--dark);
 }
 
 .strategy-images {
  display: flex;
  gap: 20px;
  margin-top: 2rem;
 }
 
 .strategy-image {
  width: calc(50% - 10px);
  height: 250px;
  object-fit: cover;
 }
 
 @media (max-width: 768px) {
  .strategy-images {
    flex-direction: column;
  }
  
  .strategy-image {
    width: 100%;
    margin-bottom: 15px;
  }
 }
 
 /* Стилі для блоку "Аналитика и метрики" */
 .metrics-section {
  background-color: var(--white);
 }
 
 .metric-item {
  margin-bottom: 2rem;
  padding-left: 20px;
  border-left: 3px solid var(--primary);
 }
 
 .metric-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--dark);
 }
 
 /* Стилі для блоку "Типичные ошибки" */
 .mistakes-section {
  background-color: var(--light-bg);
 }
 
 .mistake-item {
  margin-bottom: 2.5rem;
  position: relative;
  padding-left: 60px;
 }
 
 .mistake-item:last-child {
  margin-bottom: 0;
 }
 
 .mistake-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
 }
 
 .mistake-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--dark);
 }
 /* Стилі для блоку "Успешные казахстанские бренды" */
.brands-section {
  background-color: var(--white);
 }
 
 .brand-item {
  margin-bottom: 4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
 }
 
 .brand-item:last-child {
  margin-bottom: 0;
 }
 
 .brand-image-col {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 1.5rem;
 }
 
 .brand-content-col {
  flex: 0 0 100%;
  max-width: 100%;
 }
 
 .brand-image {
  width: 100%;
  height: auto;
  object-fit: cover;
 }
 
 .brand-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--dark);
 }
 
 .brand-category {
  display: inline-block;
  background-color: var(--light-bg);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 5px 10px;
  margin-bottom: 1rem;
 }
 
 @media (min-width: 768px) {
  .brand-item {
    flex-wrap: nowrap;
  }
  
  .brand-image-col {
    flex: 0 0 40%;
    max-width: 40%;
    margin-bottom: 0;
    padding-right: 2rem;
  }
  
  .brand-content-col {
    flex: 0 0 60%;
    max-width: 60%;
  }
 }
 
 /* Стилі для блоку "Международный опыт" */
 .international-section {
  background-color: var(--dark);
  color: var(--white);
 }
 
 .international-title {
  color: var(--white);
 }
 
 .international-title::after {
  background-color: var(--primary);
 }
 
 .highlight-text {
  color: var(--primary);
  font-weight: 600;
 }
 /* Стилі для блоку "Контактная информация" */
.contact-section {
  background-color: var(--light-bg);
 }
 
 .contact-info {
  margin-bottom: 2rem;
 }
 
 .contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
 }
 
 .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
 }
 
 .contact-icon {
  color: var(--primary);
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
 }
 
 .contact-text {
  font-size: 1rem;
 }
 
 .contact-text strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
 }
 
 .map-container {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
 }
 
 .map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
 }
 
 .working-hours {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: var(--white);
 }
 
 .hours-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark);
  display: flex;
  align-items: center;
 }
 
 .hours-title .material-icons {
  margin-right: 0.5rem;
  color: var(--primary);
 }
 
 .hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
 }
 
 .hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
 }
 
 .hours-item:last-child {
  border-bottom: none;
 }
 
 .day {
  font-weight: 500;
 }
 
 /* Стилі для блоку форми заявки */
 .form-section {
  background-color: var(--white);
 }
 
 .form-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
 }
 
 .form-subtitle {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 2.5rem;
 }
 
 .form-container {
  margin: 0 auto;
 }
 
 .form-floating {
  margin-bottom: 1.5rem;
 }
 
 .form-control {
  border: 1px solid #e5e5e5;
  padding: 0.75rem;
 }
 
 .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(54, 143, 42, 0.25);
 }
 
 .btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
 }
 
 .btn-primary:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
 }
