.header {
  position: relative;
  z-index: 100;
  background: #f5f5f5;
  height: auto;
}
.container {
  height: auto;
}
.info {
  margin-bottom: 15px;
}
.header_p1 {
    font-size: 50px;
    min-width: auto !important;
    width: auto;
  }

/* Burger search input styles - matching other pages */
.burger_search_input {
  display: none;
  width: 200px;
  opacity: 0;
  padding-left: 10px;
  font-size: 18px;
  transition: width 0.3s ease, opacity 0.3s ease;
  border: 2px solid #c5c5c5;
  border-radius: 2px;
  outline: none;
  background: white;
}

.burger_search_input.active {
  display: inline-block;
  opacity: 1;
}

/* Burger icons bottom container */
.burger_icons_bottom {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 50px;
  transition: margin-top 0.3s ease;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Burger search button */
.burger_search {
  transition: opacity 0.3s ease;
}

/* Burger icons - ensure they are always visible */
.burger_tg_btn,
.burger_change_language,
.burger_theme_btn {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Override search-active styles to keep icons visible */
.burger_icons.search-active .burger_icons_bottom {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin-top: 5px !important;
}

.burger_icons.search-active .burger_tg_btn,
.burger_icons.search-active .burger_change_language,
.burger_icons.search-active .burger_theme_btn {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
  
  .header_search_input {
    opacity: 0 !important;
    transform: translateX(-20px) !important;
    transition: width 0.3s ease, opacity 0.3s ease, transform 0.3s ease !important;
  }
  
  .info_right.search-mode .header_search_input {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }
  
  .burger_search_input {
    opacity: 0 !important;
    transform: translateY(-10px) !important;
    transition: opacity 0.3s ease, transform 0.3s ease !important;
  }
  
  .burger_icons.search-active .burger_search_input {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  
  /* Dropdown menu for desktop */
  .dropdown-container {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-trigger {
    position: relative;
  }
  
  .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background-color: white;
    min-width: 350px;
    box-shadow: 0px 8px 20px 0px rgba(0,0,0,0.15);
    z-index: 100;
    padding: 10px 0;
    margin-top: 5px;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.15s ease;
    pointer-events: none;
  }
  
  .dropdown-menu.show {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  
  .dropdown-menu a {
    color: black;
    padding: 14px 18px;
    text-decoration: none;
    display: block;
    font-size: 18px;
    transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    border-bottom: none !important;
  }
  
  .dropdown-menu a:hover {
    background-color: #f8f8f8;
    color: #802a34;
    padding-left: 24px;
  }
  
  .dropdown-container:hover .dropdown-menu {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .submenu{
    display: none;
  }
  .about_company-hero {
    position: relative;
    height: 400px;
    background-image: url('../img/ЦехУУАЗ.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1200px;
    padding: 0 20px;
  }
  
  .breadcrumb {
    font-size: 16px;
    margin-bottom: 30px;
    letter-spacing: 1px;
  }
  
  .breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .breadcrumb a:hover {
    color: #ff6b7a;
  }
  
  .breadcrumb .separator {
    margin: 0 15px;
    color: #ffffff;
    opacity: 0.7;
  }
  
  .breadcrumb .current {
    color: #ffffff;
    opacity: 0.9;
  }
  
  .hero-title {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  }


  /* WHO WE ARE SECTION */
  .who-we-are {
    padding: 100px 0;
    background-color: #fbfbfb;
  }

  body.dark-theme .who-we-are {
    background-color: #0d1117 !important;
  }

  .section-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1600px;
    margin: 0 auto;
  }

  .text-content {
    flex: 1.5;
    max-width: 800px;
    background-color: transparent;
    border: none;
    padding: 0;
  }

  .image-content {
    flex: 1;
  }

  .section-title {
    font-size: 50px;
    font-weight: 400;
    color: #000;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-color: transparent;
    border: none;
  }

  body.dark-theme .section-title {
    color: #c9d1d9 !important;
    background-color: transparent !important;
  }

  .main-description {
    font-size: 24px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 50px;
    font-weight: 300;
    background-color: transparent;
    border: none;
    padding: 0;
  }

  body.dark-theme .main-description {
    color: #c9d1d9 !important;
    background-color: transparent !important;
  }

  .company-stats-single {
    margin-top: 30px;
    background-color: transparent;
    border: none;
    padding: 0;
  }

  body.dark-theme .company-stats-single {
    background-color: transparent !important;
  }

  body.dark-theme .company-stats-single .stat-text {
    color: #ff6b7a !important;
    font-weight: 600 !important;
  }

  .company-stats-single .stat-text {
    font-size: 27px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    background-color: transparent;
    border: none;
    padding: 0;
  }

  .company-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  /* ACTIVITIES SECTION */
  .activities {
    padding: 100px 0;
    background-color: white;
  }

  .activities-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .activity-group {
    display: flex;
    gap: 60px;
    align-items: stretch;
  }

  .activity-title-card {
    background: #802a34;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(128, 42, 52, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .activity-title-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(128, 42, 52, 0.4);
  }

  .activity-title-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    text-align: center;
  }

  .activity-links-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #802a34;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
    justify-content: center;
  }

  .activity-links-section a {
    display: block;
    font-size: 18px;
    color: #333;
    text-decoration: none;
    line-height: 1.5;
    padding: 8px 0;
    border-bottom: none;
    transition: all 0.3s ease;
  }

  .activity-links-section a:hover {
    color: #802a34;
    padding-left: 10px;
  }

  /* HISTORY SECTION */
  .history {
    padding: 100px 0;
    background-color: #fbfbfb;
  }

  body.dark-theme .history {
    background-color: #0d1117 !important;
  }

  .history .section-content {
    flex-direction: row-reverse;
  }

  .history-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .history-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .history-text {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    font-weight: 300;
  }

  /* VACANCIES SECTION */
  .vacancies {
    padding: 100px 0;
    color: black;
    background-color: white;
  }

  body.dark-theme .vacancies {
    background-color: #0d1117 !important;
  }

  .vacancies .section-title {
    color: black;
    text-align: center;
    margin-bottom: 50px;
  }

  .vacancies-content {
    max-width: 1000px;
    margin: 0 auto;
  }

  .vacancies-intro {
    text-align: center;
    margin-bottom: 60px;
  }

  .vacancies-text {
    font-size: 30px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
  }

  .vacancies-update {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 300;
  }

  .vacancies-update a {
    color: #802a34;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .vacancies-update a:hover {
    color: #a03a47;
  }

  .vacancies-list {
    margin-bottom: 60px;
  }

  .vacancies-subtitle {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: black;
  }

  .vacancy-card {
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }

  .vacancy-card:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }

  body.dark-theme .vacancy-card {
    background: #21262d !important;
    border: 1px solid #30363d !important;
    color: #c9d1d9 !important;
  }

  body.dark-theme .vacancy-card:hover {
    background: #2d3748 !important;
    border-color: #ff6b7a !important;
  }

  body.dark-theme .vacancy-card h3,
  body.dark-theme .vacancy-card h4,
  body.dark-theme .vacancy-card p {
    color: #c9d1d9 !important;
  }

  .vacancy-card.active {
    border-color: #802a34;
    box-shadow: 0 4px 20px rgba(128, 42, 52, 0.2);
  }

  .vacancy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .vacancy-header:hover {
    background: rgba(128, 42, 52, 0.05);
  }

  .vacancy-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    color: #333;
  }

  .vacancy-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #802a34;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 30px;
    text-align: center;
    transform: rotate(0deg);
  }

  .vacancy-card.active .vacancy-toggle {
    transform: rotate(180deg);
  }

  .vacancy-details {
    max-height: 0;
    padding: 0 30px;
    border-top: 1px solid transparent;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-10px);
  }

  .vacancy-details.show {
    max-height: 1000px;
    padding: 30px;
    border-top: 1px solid #e0e0e0;
    opacity: 1;
    transform: translateY(0);
  }

  .vacancy-item {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    transition-delay: 0s;
  }

  .vacancy-details.show .vacancy-item {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
  }

  .vacancy-details.show .vacancy-item:nth-child(1) { transition-delay: 0.1s; }
  .vacancy-details.show .vacancy-item:nth-child(2) { transition-delay: 0.15s; }
  .vacancy-details.show .vacancy-item:nth-child(3) { transition-delay: 0.2s; }
  .vacancy-details.show .vacancy-item:nth-child(4) { transition-delay: 0.25s; }
  .vacancy-details.show .vacancy-item:nth-child(5) { transition-delay: 0.3s; }

  .vacancy-item strong {
    color: #802a34;
    font-weight: 600;
  }

  .contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .contact-info p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
  }

  .contact-info a {
    color: #802a34;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .contact-info a:hover {
    color: #a03a47;
  }
  .footer {
    margin-top: 0;
  }

/* DOCUMENTS SECTION STYLES */
.documents {
  padding: 80px 0;
  background: #f8f9fa;
}

.documents .section-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 54px;
  font-weight: 700;
  color: #1a1a1a;
}

.documents-intro {
  width: 90%;
  margin: 0 auto 0 50px;
}

.documents-intro-text {
  font-size: 38px;
  line-height: 1.6;
  color: #4a5568;
  font-weight: 400;
  margin-bottom: 30px;
  padding-left: 45px;
}

.documents-content {
  width: 90%;
  margin: 0 auto;
}

.documents-outro {
  max-width: 1000px;
  margin: 50px auto 0 auto;
  text-align: center;
}

.documents-outro-text {
  font-size: 23px;
  line-height: 1.6;
  color: #4a5568;
  font-weight: 400;
}

.document-category {
  margin-bottom: 50px;
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

body.dark-theme .document-category {
  background: #161b22 !important;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e0e0e0;
}

.category-title {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.category-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  transition: transform 0.3s ease;
}

body.dark-theme .category-toggle {
  background: #161b22 !important;
  border: 1px solid #30363d !important;
  border-radius: 4px !important;
  color: #c9d1d9 !important;
}

body.dark-theme .category-toggle:hover {
  background: #21262d !important;
  border-color: #ff6b7a !important;
}

.category-toggle img {
  width: 20px;
  height: 20px;
}

body.dark-theme .category-toggle img {
  filter: brightness(0) saturate(100%) invert(85%) sepia(8%) saturate(750%) hue-rotate(169deg) brightness(95%) contrast(89%) !important;
}

.category-toggle.rotated {
  transform: rotate(180deg);
}

.documents-list {
  display: none;
}

.documents-list.active {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Простой стиль для технических паспортов */
.document-category-simple {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body.dark-theme .document-category-simple {
  background: #161b22 !important;
}

.category-title-simple {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}


.document-item {
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.document-item:last-child {
  border-bottom: none;
}

.document-link {
  color: #802a34;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: block;
  padding: 10px 0;
  position: relative;
}

.document-link:hover {
  color: #802a34;
  text-decoration: underline;
  transform: translateX(5px);
}

.document-link::before {
  content: "📄";
  margin-right: 10px;
  font-size: 18px;
}


/* Shareholders section styles */
.shareholders {
  padding: 80px 0;
  background: #f8f9fa;
}

.shareholders-intro {
  margin-bottom: 40px;
}

.shareholders-intro-text {
  font-size: 28px;
  color: #666;
  margin: 0;
}

.shareholders-outro {
  margin-top: 40px;
}

.shareholders-outro-text {
  font-size: 18px;
  color: #666;
  margin: 0;
  text-align: center;
}


/* Awards section styles */
.awards {
  padding: 80px 0;
  background: #f8f9fa;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.award-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 1px solid rgba(128, 42, 52, 0.1);
}

.award-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(128, 42, 52, 0.3);
}

.award-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
}

.award-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.award-item:hover .award-image img {
  transform: scale(1.08);
}

.award-description {
  padding: 25px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.award-description h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.5;
  text-align: center;
  transition: color 0.3s ease;
}

.award-item:hover .award-description h3 {
  color: #802a34;
}




/* Image Modal Styles */
.image-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.modal-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 90%;
  max-width: 1200px;
  top: 50%;
  transform: translateY(-50%);
  cursor: default;
  background: transparent;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #802a34;
}

.modal-counter {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  z-index: 1001;
}

.modal-prev,
.modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-prev:hover,
.modal-next:hover {
  background: rgba(0, 0, 0, 0.9);
}

.modal-prev {
  left: -70px;
}

.modal-next {
  right: -70px;
}

.modal-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  padding: 20px;
}

.modal-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

/* Make images clickable */
.company-image,
.history-image,
.award-image img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.company-image:hover,
.history-image:hover,
.award-image img:hover {
  transform: scale(1.02);
}


  /* RESPONSIVE DESIGN — CONSOLIDATED, ORDERED BY BREAKPOINT (DESC) */
  @media (max-width: 1200px) {
    /* layout */
    .section-content { flex-direction: column; gap: 50px; }
    .activity-group { flex-direction: column; gap: 20px; }
    .activity-title-card { flex: none; }
    .activity-title-card h3 { font-size: 22px; }
    .activity-links-section a { font-size: 16px; }
    .section-title { font-size: 40px; }
    .main-description { font-size: 20px; }
    .company-stats-single .stat-text { font-size: 22px; }
    /* modal */
    .modal-prev, .modal-next { width: 45px; height: 45px; font-size: 22px; }
    .modal-prev { left: -50px; }
    .modal-next { right: -50px; }
  }

  @media (max-width: 992px) {
    /* header/menu behavior */
    .dropdown-container:hover .dropdown-menu:not(.show) { display: none !important; opacity: 0 !important; pointer-events: none !important; transform: none !important; }
    .dropdown-menu.show { display: block !important; opacity: 1 !important; pointer-events: auto !important; transform: translateY(0) !important; }
    .header, .container { height: auto; min-height: auto; }
    .burger{ display: flex; }
    .header { background: transparent !important; }
    .container { background: transparent !important; }
    .about_company-hero { height: 300px; }
    .dropdown-menu a:active,
    .dropdown-menu a:focus,
    .dropdown-menu a:hover { border-bottom: none !important; color: black !important; padding-left: 18px; }
    .info_left .dropdown-trigger:active,
    .info_left .dropdown-trigger:focus { border-bottom: none !important; padding-left: 0; }
    .hero-title { font-size: 39px; letter-spacing: 2px; }
    .breadcrumb { font-size: 14px; margin-bottom: 20px; }
    /* modal */
    .modal-prev, .modal-next { width: 42px; height: 42px; font-size: 21px; }
    .modal-prev { left: -45px; }
    .modal-next { right: -45px; }
  }

  @media (max-width: 768px) {
    /* section paddings and headings */
    .who-we-are, .activities, .history, .vacancies { padding: 60px 0; }
    .section-title { font-size: 32px; margin-bottom: 30px; }
    .main-description { font-size: 18px; }
    /* activities */
    .activities-container { gap: 30px; }
    .activity-group { gap: 15px; }
    .activity-title-card { padding: 20px 15px; }
    .activity-title-card h3 { font-size: 18px; }
    .activity-links-section { padding: 20px 15px; }
    .activity-links-section a { font-size: 15px; padding: 6px 0; }
    .company-stats-single .stat-text { font-size: 18px; }
    /* images */
    .company-image, .history-image { height: 250px; }
    /* history layout */
    .history-text { font-size: 18px; }
    .history .section-content { flex-direction: column !important; }
    .history .image-content { order: 2; width: 100%; margin-top: 30px; }
    .history .text-content { order: 1; width: 100%; }
    .history-image { width: 100%; height: 300px; }
    /* vacancies */
    .vacancies-text { font-size: 18px; }
    .vacancies-update { font-size: 16px; }
    .vacancies-subtitle { font-size: 24px; }
    .vacancy-header { padding: 20px 20px; }
    .vacancy-title { font-size: 18px; }
    .vacancy-details { padding: 0 20px 20px 20px; }
    .vacancy-item { font-size: 14px; }
    .contact-info { padding: 30px 20px; }
    .contact-info p { font-size: 16px; }
    /* documents */
    .documents { padding: 60px 0; }
    .documents .section-title { font-size: 28px; margin-bottom: 40px; }
    .document-category { padding: 25px 20px; margin-bottom: 30px; }
    .category-title { font-size: 20px; margin-bottom: 20px; }
    .category-title-simple { font-size: 20px; flex-direction: column; align-items: flex-start; gap: 5px; }
    .document-link { font-size: 14px; }
    .documents-intro { margin-bottom: 30px; }
    .documents-intro-text { font-size: 16px; }
    .documents-outro { margin-top: 30px; }
    .documents-outro-text { font-size: 16px; }
    /* shareholders */
    .shareholders { padding: 60px 0; }
    .shareholders .section-title { font-size: 28px; margin-bottom: 40px; }
    .shareholders-intro { margin-bottom: 30px; }
    .shareholders-intro-text { font-size: 16px; }
    .shareholders-outro { margin-top: 30px; }
    .shareholders-outro-text { font-size: 16px; }
    /* awards */
    .awards { padding: 60px 0; }
    .awards .section-title { font-size: 28px; margin-bottom: 40px; }
    .awards-grid { grid-template-columns: 1fr; gap: 25px; margin-top: 35px; }
    .award-image { height: 280px; }
    .award-description { padding: 20px 15px; }
    .award-description h3 { font-size: 15px; }
    /* modal */
    .modal-content { width: 95%; padding: 20px; }
    .modal-close { font-size: 30px; top: 15px; right: 15px; }
    .modal-counter { font-size: 16px; top: 15px; left: 15px; }
    .modal-prev, .modal-next { width: 40px; height: 40px; font-size: 20px; top: 50%; transform: translateY(-50%); }
    .modal-prev { left: 10px; }
    .modal-next { right: 10px; }
  }

  @media (max-width: 480px) {
    /* awards */
    .awards-grid { grid-template-columns: 1fr; gap: 20px; }
    .award-image { height: 250px; }
    .award-description { padding: 18px 12px; }
    .award-description h3 { font-size: 14px; }
    /* modal */
    .modal-content { width: 98%; padding: 10px; }
    .modal-close { font-size: 25px; top: 10px; right: 10px; }
    .modal-counter { font-size: 14px; top: 10px; left: 10px; }
    .modal-prev, .modal-next { width: 35px; height: 35px; font-size: 18px; top: 50%; transform: translateY(-50%); }
    .modal-prev { left: 5px; }
    .modal-next { right: 5px; }
  }

/* ===== DARK THEME STYLES ===== */

/* Dark theme for header */
body.dark-theme .header {
  background-color: #0d1117 !important;
  box-shadow: inset 0 0 0 1000px rgba(13, 17, 23, 0.8);
}

body.dark-theme .header .inner_image {
  opacity: 0.2;
}

/* Dark theme for main content */
body.dark-theme .main {
  background-color: #0d1117;
}

/* Dark theme for about company section */
body.dark-theme .about-company {
  background-color: #0d1117;
}

body.dark-theme .about-company h1,
body.dark-theme .about-company h2 {
  color: #c9d1d9;
}

body.dark-theme .about-company p {
  color: #8b949e;
}

/* Dark theme for main content sections */
body.dark-theme .main-content {
  background-color: #0d1117;
}

body.dark-theme .section {
  background-color: #0d1117;
}

body.dark-theme .section h1,
body.dark-theme .section h2,
body.dark-theme .section h3 {
  color: #c9d1d9;
}

body.dark-theme .section p {
  color: #8b949e;
}

/* Dark theme for text content */

body.dark-theme .text-content h1,
body.dark-theme .text-content h2,
body.dark-theme .text-content h3 {
  color: #c9d1d9;
}

body.dark-theme .text-content p {
  color: #8b949e;
}

/* Dark theme for image sections */
body.dark-theme .image-section {
  background-color: #161b22;
}

body.dark-theme .side-image {
  background-color: #0d1117;
  border: 1px solid #30363d;
}

/* Dark theme for lists */
body.dark-theme ul,
body.dark-theme ol {
  color: #8b949e;
}

body.dark-theme li {
  color: #8b949e;
}

/* Dark theme for links */
body.dark-theme a {
  color: #58a6ff;
}

body.dark-theme a:hover {
  color: #ff6b7a;
}

/* Dark theme for all text elements */
body.dark-theme h1,
body.dark-theme h2,
body.dark-theme h3,
body.dark-theme h4,
body.dark-theme h5,
body.dark-theme h6 {
  color: #c9d1d9;
}

body.dark-theme p,
body.dark-theme span,
body.dark-theme div {
  color: #8b949e;
}

/* Dark theme for containers and wrappers */
body.dark-theme .container,
body.dark-theme .wrapper,
body.dark-theme .content,
body.dark-theme .main-content,
body.dark-theme .page-content {
  background-color: #0d1117;
}

body.dark-theme .about-section h1,
body.dark-theme .about-section h2,
body.dark-theme .about-section h3 {
  color: #c9d1d9;
}

body.dark-theme .about-section p {
  color: #8b949e;
}

/* Dark theme for content cards */
body.dark-theme .content-card {
  background-color: #161b22;
  border: 1px solid #30363d;
}

body.dark-theme .content-card h3 {
  color: #c9d1d9;
}

body.dark-theme .content-card p {
  color: #8b949e;
}

body.dark-theme .content-card:hover {
  border-color: #ff6b7a;
  box-shadow: 0 4px 20px rgba(255, 107, 122, 0.2);
}

/* Dark theme for awards section */
body.dark-theme .awards-section {
  background-color: #161b22;
}

body.dark-theme .award-item {
  background-color: #0d1117;
  border: 1px solid #30363d;
}

body.dark-theme .award-item:hover {
  border-color: #ff6b7a;
  box-shadow: 0 4px 20px rgba(255, 107, 122, 0.2);
}

/* Dark theme for gallery */
body.dark-theme .gallery {
  background-color: #0d1117;
}

body.dark-theme .gallery img {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

body.dark-theme .gallery img:hover {
  opacity: 1;
}

/* Dark theme for modal */
body.dark-theme .modal {
  background-color: rgba(0, 0, 0, 0.9);
}

body.dark-theme .modal-content {
  background-color: #161b22;
  border: 1px solid #30363d;
}

body.dark-theme .modal-close {
  color: #c9d1d9;
}

body.dark-theme .modal-close:hover {
  color: #ff6b7a;
}

body.dark-theme .modal-prev,
body.dark-theme .modal-next {
  color: #c9d1d9;
  background-color: #161b22;
  border: 1px solid #30363d;
}

body.dark-theme .modal-prev:hover,
body.dark-theme .modal-next:hover {
  background-color: #ff6b7a;
  color: #ffffff;
}

/* Dark theme for search input */
body.dark-theme .header_search_input {
  background-color: #0d1117;
  border: 1px solid #30363d;
  color: #c9d1d9;
}

body.dark-theme .header_search_input::placeholder {
  color: #8b949e;
}

body.dark-theme .burger_search_input {
  background-color: #0d1117;
  border: 1px solid #30363d;
  color: #c9d1d9;
}

body.dark-theme .burger_search_input::placeholder {
  color: #8b949e;
}

/* Dark theme for scroll to top button */
body.dark-theme .scroll-to-top {
  background-color: #161b22;
  border: 1px solid #30363d;
}

body.dark-theme .scroll-to-top:hover {
  background-color: #ff6b7a;
  border-color: #ff6b7a;
}

body.dark-theme .scroll-to-top svg {
  fill: #c9d1d9;
}

body.dark-theme .scroll-to-top:hover svg {
  fill: #ffffff;
}
body.dark-theme .activities{
  background-color: #0d1117;
}

body.dark-theme .activity-links-section {
  background-color: #161b22 !important;
  border: 1px solid #30363d !important;
}

body.dark-theme .activity-links-section a {
  color: #c9d1d9 !important;
}

body.dark-theme .activity-links-section a:hover {
  color: #ff6b7a !important;
  border-bottom-color: #ff6b7a !important;
}

body.dark-theme .activities h2 {
  color: #c9d1d9 !important;
}
body.dark-theme .documents{
  background-color: #0d1117;
}
body.dark-theme .shareholders{
  background-color: #0d1117;
}