@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Sour Gummy", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #e3c237;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #c9a82f;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #e3c237 #f1f1f1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-bar {
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.contact-info {
  font-size: 14px;
  color: #666;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 18px;
  height: 18px;
  fill: #666;
  transition: fill 0.3s ease;
}
.social-icon:hover {
  fill: #000;
}

.top-bar-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.theme-switcher .theme-toggle {
  background: transparent;
  border: 1px solid #666;
  border-radius: 12px;
  padding: 4px 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  width: 32px;
  height: 22px;
}
.theme-switcher .theme-toggle:hover {
  border-color: #e3c237;
  background: rgba(227, 194, 55, 0.1);
}
.theme-switcher .theme-toggle svg {
  position: absolute;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.theme-switcher .theme-toggle .sun-icon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.theme-switcher .theme-toggle .moon-icon {
  opacity: 0;
  transform: scale(0.8) rotate(180deg);
}

body.dark-mode .theme-toggle .sun-icon {
  opacity: 0;
  transform: scale(0.8) rotate(180deg);
}
body.dark-mode .theme-toggle .moon-icon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.lang-switcher {
  font-size: 14px;
}
.lang-switcher a {
  text-decoration: none;
  color: #666;
  padding: 0 5px;
  transition: color 0.3s ease;
}
.lang-switcher a.active {
  color: #000;
  font-weight: 600;
}
.lang-switcher a:hover {
  color: #000;
}

.main-nav {
  background: #fff;
  padding: 20px 40px;
  min-height: 140px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 35px;
}
.nav-menu a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  padding-bottom: 5px;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #e3c237;
  transition: width 0.3s ease;
}
.nav-menu a:hover {
  color: #000;
  transform: translateY(-2px);
}
.nav-menu a:hover::after {
  width: 100%;
}
.nav-menu.left {
  flex: 1;
  justify-content: flex-end;
  margin-right: 150px;
}
.nav-menu.right {
  flex: 1;
  justify-content: flex-start;
  margin-left: 150px;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.logo a {
  display: block;
  text-decoration: none;
}
.logo img {
  height: 110px;
  width: auto;
  display: block;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: absolute;
  right: 20px;
}
.mobile-menu-toggle span {
  width: 30px;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}

.nav-menu.mobile-menu {
  display: none;
}

.hero {
  background-color: #f1f1f1;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-slider .slide {
  display: none;
  width: 100%;
  height: 100%;
  animation: fadeIn 0.5s ease;
}
.hero-slider .slide.active {
  display: flex;
  align-items: center;
}
.hero-slider .badge {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 80px;
  height: 80px;
  z-index: 3;
}
.hero-slider .badge img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero-slider .badge .award-icon {
  width: 100%;
  height: 100%;
  color: #333;
}
.hero-slider .slide-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 70px;
}
.hero-slider .quote-section {
  max-width: 600px;
  padding-right: 60px;
  position: relative;
  z-index: 2;
}
.hero-slider .quote-section .quote-small {
  font-family: "Oregano", cursive;
  font-size: 24px;
  font-weight: 400;
  color: #666;
  margin-bottom: 10px;
  font-style: italic;
  letter-spacing: 0.5px;
}
.hero-slider .quote-section .quote {
  font-family: "Oregano", cursive;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.2;
  color: #333;
  margin-bottom: 40px;
  font-style: italic;
  letter-spacing: 1px;
}
.hero-slider .quote-section .cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.hero-slider .quote-section .cta-button {
  background: #e3c237;
  color: #333;
  border: none;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
}
.hero-slider .quote-section .cta-button:hover {
  background: #c9a82f;
  transform: translateY(-2px);
}
.hero-slider .quote-section .cta-button.dark {
  background: #1a1a1a;
  color: white;
}
.hero-slider .quote-section .cta-button.dark:hover {
  background: #343434;
}
.hero-slider .author-image {
  position: absolute;
  right: 10px;
  bottom: 0;
  height: 600px;
  display: flex;
  align-items: flex-end;
}
.hero-slider .author-image > img {
  height: 100%;
  max-height: 600px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
.hero-slider .author-image .book-showcase {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 120px;
}
.hero-slider .author-image .book-showcase img {
  width: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.hero-slider .slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 5;
}
.hero-slider .slider-controls button {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.hero-slider .slider-controls button:hover {
  background: white;
  transform: scale(1.1);
}
.hero-slider .slider-controls button:active {
  transform: scale(0.95);
}
.hero-slider .slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.hero-slider .slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #333;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  padding: 4px;
  margin: -4px;
}
.hero-slider .slider-dots .dot.active {
  background: #333;
}
.hero-slider .slider-dots .dot:hover {
  transform: scale(1.2);
}
.hero-slider .slider-dots .dot:active {
  transform: scale(0.9);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.content-section {
  padding: 60px 0;
}
.content-section .two-columns {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}
.content-section .text-content p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}
.content-section .image-placeholder {
  background: #d4d4d4;
  height: 350px;
  width: 100%;
}

.video-section {
  padding: 80px 0;
}
.video-section .video-container {
  background: #666;
  padding: 100px;
  position: relative;
  text-align: center;
  color: white;
}
.video-section .video-container h3 {
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 400;
}
.video-section .video-container h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 400;
}
.video-section .video-container p {
  max-width: 500px;
  margin: 0 auto 40px;
  font-size: 14px;
  line-height: 1.6;
}
.video-section .video-container .play-button {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.video-section .video-container .play-button .play-icon {
  width: 60px;
  height: 60px;
}

.information-section {
  padding: 60px 0;
  background: white;
}
.information-section .info-columns {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}
.information-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 30px;
  border-bottom: 3px solid #e3c237;
  padding-bottom: 10px;
}
.information-section .section-header .see-all-link {
  margin-top: 0;
  font-size: 14px;
}
.information-section .section-title {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.information-section .articles-column .articles-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.information-section .articles-column .article-item-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.information-section .articles-column .article-item-link:hover {
  text-decoration: none;
}
.information-section .articles-column .article-item-link:hover .article-item {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border-color: #999;
}
.information-section .articles-column .article-item-link:hover .article-content h3 {
  color: #555;
}
.information-section .articles-column .article-item {
  display: flex;
  gap: 20px;
  background: #f1f1f1;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.information-section .articles-column .article-item .article-thumb {
  width: 120px;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
}
.information-section .articles-column .article-item .article-content {
  flex: 1;
}
.information-section .articles-column .article-item .article-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.information-section .articles-column .article-item .article-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.information-section .news-column .news-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.information-section .news-column .news-item-link {
  text-decoration: none;
  display: block;
  color: inherit;
}
.information-section .news-column .news-item-link:visited {
  color: inherit;
}
.information-section .news-column .news-item {
  padding: 15px 0;
  border-bottom: 1px solid #d4d4d4;
  transition: all 0.3s ease;
}
.information-section .news-column .news-item .news-date {
  font-size: 12px;
  color: #999;
  display: block;
  margin-bottom: 5px;
}
.information-section .news-column .news-item h4 {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
  transition: color 0.3s ease;
  cursor: pointer;
}
.information-section .news-column .news-item h4:hover {
  color: #000;
}
.information-section .news-column .news-item-link:last-child .news-item {
  border-bottom: none;
}
.information-section .news-column .news-item-link:hover .news-item {
  padding-left: 10px;
  background: white;
  margin: 0 -10px;
  padding-right: 10px;
}
.information-section .see-all-link {
  display: inline-block;
  margin-top: 25px;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
}
.information-section .see-all-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #e3c237;
  transition: width 0.3s ease;
}
.information-section .see-all-link:hover {
  transform: translateX(5px);
  color: #e3c237;
}
.information-section .see-all-link:hover::after {
  width: 100%;
}

.book-section {
  background: #1a1a1a;
  padding: 40px 0 60px;
  position: relative;
}
.book-section .book-slider-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
}
.book-section .book-slider-wrapper {
  position: relative;
  width: 100%;
  min-height: 200px;
}
.book-section .book-slider-track {
  position: relative;
  width: 100%;
}
.book-section .book-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  pointer-events: none;
}
.book-section .book-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  pointer-events: auto;
}
.book-section .book-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  height: 200px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.book-section .book-image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.book-section .book-image img {
  width: auto;
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}
.book-section .book-image::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 30px;
  background: rgba(0, 0, 0, 0.2);
  filter: blur(15px);
  z-index: 1;
}
.book-section .book-image:hover img {
  transform: translateY(-5px) scale(1.02);
}
.book-section .book-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  color: white;
}
.book-section .book-info .book-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.book-section .book-info .book-details .badge {
  display: inline-block;
  background: #e3c237;
  color: #333;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-bottom: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
.book-section .book-info .book-details h2 {
  font-size: 32px;
  color: white;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.book-section .book-info .book-details .book-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.book-section .book-info .book-details .book-description {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 450px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.book-section .book-info .purchase-section {
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-section .book-info .purchase-section .cta-button {
  background: #e3c237;
  color: #333;
  padding: 14px 35px;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.book-section .book-info .purchase-section .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(227, 194, 55, 0.3);
  background: #edd054;
}
.book-section .book-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.book-section .book-slider-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #e3c237;
  transform: translateY(-50%) scale(1.1);
}
.book-section .book-slider-arrow.book-slider-prev {
  left: 20px;
}
.book-section .book-slider-arrow.book-slider-next {
  right: 20px;
}
.book-section .book-slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.book-section .book-slider-dots .book-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.book-section .book-slider-dots .book-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}
.book-section .book-slider-dots .book-dot.active {
  background: #e3c237;
}

.slider-section {
  padding: 60px 0;
}
.slider-section .slider {
  position: relative;
  background: #d4d4d4;
  height: 400px;
}
.slider-section .slider .slider-nav {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}
.slider-section .slider .slider-nav button {
  background: none;
  border: 1px solid #333;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
}
.slider-section .slider .slider-nav button:hover {
  background: #333;
  color: white;
}

.cta-section {
  margin-top: 100px;
  background: #f5f5f5;
  padding: 80px 40px;
}
.cta-section .cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.cta-section .cta-image {
  background: #666;
  min-height: 400px;
}
.cta-section .cta-content {
  background: #1a1a1a;
  padding: 60px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-section .cta-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 400;
}
.cta-section .cta-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #aaa;
}
.cta-section .cta-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cta-section .cta-form input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #444;
  padding: 10px 0;
  color: white;
  font-size: 14px;
}
.cta-section .cta-form input::-moz-placeholder {
  color: #666;
}
.cta-section .cta-form input::placeholder {
  color: #666;
}
.cta-section .cta-form input:focus {
  outline: none;
  border-bottom-color: #888;
}
.cta-section .cta-form button {
  background: white;
  color: #1a1a1a;
  border: none;
  padding: 12px 30px;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 20px;
  align-self: flex-start;
  transition: all 0.3s ease;
}
.cta-section .cta-form button:hover {
  background: #f0f0f0;
}

.media-section {
  padding: 80px 0;
  background: #f8f9fa;
}
.media-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.media-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 30px;
  border-bottom: 3px solid #e3c237;
  padding-bottom: 10px;
}
.media-section .section-header .header-content .section-title {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.media-section .section-header .header-content .section-description {
  font-size: 16px;
  color: #6c757d;
  max-width: 600px;
  line-height: 1.6;
  margin-top: 10px;
}
.media-section .section-header .see-all-link {
  display: inline-block;
  margin-top: 0;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}
.media-section .section-header .see-all-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #e3c237;
  transition: width 0.3s ease;
}
.media-section .section-header .see-all-link:hover {
  transform: translateX(5px);
  color: #e3c237;
}
.media-section .section-header .see-all-link:hover::after {
  width: 100%;
}
.media-section .media-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.media-section .media-gallery .media-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.media-section .media-gallery .media-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.media-section .media-gallery .media-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}
.media-section .media-gallery .media-item::after {
  content: "⊕";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: white;
  font-size: 48px;
  font-weight: 200;
  transition: transform 0.3s ease;
  z-index: 2;
}
.media-section .media-gallery .media-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.media-section .media-gallery .media-item:hover img {
  transform: scale(1.05);
}
.media-section .media-gallery .media-item:hover::before {
  opacity: 1;
}
.media-section .media-gallery .media-item:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  animation: fadeIn 0.3s ease;
}
.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  animation: zoomIn 0.3s ease;
}
.modal .modal-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.modal .modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.modal .modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}
.modal .modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 48px;
  font-weight: 200;
  cursor: pointer;
  padding: 20px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}
.modal .modal-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}
.modal .modal-nav.prev {
  left: 30px;
}
.modal .modal-nav.next {
  right: 30px;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 992px) {
  .media-section .media-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .media-section {
    padding: 60px 0;
  }
  .media-section .section-header {
    flex-direction: column;
    gap: 20px;
  }
  .media-section .section-header .view-all-link {
    margin-top: 0;
  }
  .media-section .media-gallery {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .modal .modal-nav {
    font-size: 36px;
    padding: 10px;
  }
  .modal .modal-nav.prev {
    left: 10px;
  }
  .modal .modal-nav.next {
    right: 10px;
  }
  .modal .modal-close {
    top: 20px;
    right: 20px;
    font-size: 32px;
    width: 40px;
    height: 40px;
  }
}
footer {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  color: #333;
  padding: 80px 40px 30px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(227, 194, 55, 0.3) 25%, rgba(227, 194, 55, 0.5) 50%, rgba(227, 194, 55, 0.3) 75%, transparent 100%);
}
footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 50px;
}
footer .footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 40px;
}
footer .footer-main-nav .footer-nav h4 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}
footer .footer-main-nav .footer-nav .footer-menu-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 5px;
  padding: 0;
  margin: 0;
}
footer .footer-main-nav .footer-nav .footer-menu-grid a {
  font-size: 16px;
}
footer .footer-main-nav .footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}
footer .footer-main-nav .footer-nav a {
  color: #495057;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
  padding: 3px 0;
}
footer .footer-main-nav .footer-nav a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #e3c237;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
footer .footer-main-nav .footer-nav a:hover {
  color: #333;
  transform: translateX(5px);
}
footer .footer-main-nav .footer-nav a:hover::before {
  width: 100%;
}
footer .footer-legal .footer-nav h4 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}
footer .footer-legal .footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  margin: 0;
}
footer .footer-legal .footer-nav a {
  color: #495057;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
  padding: 3px 0;
}
footer .footer-legal .footer-nav a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #e3c237;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
footer .footer-legal .footer-nav a:hover {
  color: #333;
  transform: translateX(5px);
}
footer .footer-legal .footer-nav a:hover::before {
  width: 100%;
}
footer .footer-newsletter {
  padding: 40px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 10px;
  margin-bottom: 40px;
}
footer .footer-newsletter .newsletter-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
footer .footer-newsletter .newsletter-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}
footer .footer-newsletter .newsletter-left .envelope-icon {
  width: 48px;
  height: 48px;
  color: #e3c237;
  flex-shrink: 0;
}
footer .footer-newsletter .newsletter-left .newsletter-info h5 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 5px 0;
}
footer .footer-newsletter .newsletter-left .newsletter-info p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}
footer .footer-newsletter .newsletter-right {
  flex: 1;
  max-width: 500px;
}
footer .footer-newsletter .newsletter-right .newsletter-form .form-group {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
footer .footer-newsletter .newsletter-right .newsletter-form .form-group input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s ease;
  background: white;
}
footer .footer-newsletter .newsletter-right .newsletter-form .form-group input:focus {
  outline: none;
  border-color: #e3c237;
}
footer .footer-newsletter .newsletter-right .newsletter-form .form-group input::-moz-placeholder {
  color: #adb5bd;
}
footer .footer-newsletter .newsletter-right .newsletter-form .form-group input::placeholder {
  color: #adb5bd;
}
footer .footer-newsletter .newsletter-right .newsletter-form .form-group button {
  padding: 12px 30px;
  background: #e3c237;
  color: #333;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
footer .footer-newsletter .newsletter-right .newsletter-form .form-group button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(227, 194, 55, 0.3);
}
footer .footer-newsletter .newsletter-right .newsletter-form .checkbox-wrapper .agreement-text {
  display: flex;
  align-items: flex-start;
  font-size: 13px;
  color: #6c757d;
  cursor: pointer;
}
footer .footer-newsletter .newsletter-right .newsletter-form .checkbox-wrapper .agreement-text input[type=checkbox] {
  margin-right: 8px;
  margin-top: 3px;
  cursor: pointer;
}
footer .footer-newsletter .newsletter-right .newsletter-form .checkbox-wrapper .agreement-text a {
  color: #333;
  text-decoration: underline;
  transition: color 0.3s ease;
}
footer .footer-newsletter .newsletter-right .newsletter-form .checkbox-wrapper .agreement-text a:hover {
  color: #e3c237;
}
footer .footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .footer-bottom .footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .footer-bottom .footer-bottom-left .footer-logo img {
  height: 40px;
  width: auto;
}
footer .footer-bottom .footer-bottom-left p {
  font-size: 13px;
  color: #8b92a3;
  margin: 0;
  letter-spacing: 0.5px;
}
footer .footer-bottom .footer-social {
  display: flex;
  gap: 12px;
}
footer .footer-bottom .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: transparent;
  border: 2px solid #e9ecef;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
footer .footer-bottom .footer-social a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #e3c237;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}
footer .footer-bottom .footer-social a:hover {
  border-color: #e3c237;
  transform: translateY(-5px) rotate(5deg);
}
footer .footer-bottom .footer-social a:hover::before {
  width: 100%;
  height: 100%;
}
footer .footer-bottom .footer-social a:hover .social-icon {
  fill: #333;
  position: relative;
  z-index: 1;
}
footer .footer-bottom .footer-social .social-icon {
  width: 18px;
  height: 18px;
  fill: #495057;
  transition: fill 0.3s ease;
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  background: white;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
  font-size: 14px;
}
.breadcrumbs .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.breadcrumbs .breadcrumbs-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.breadcrumbs .breadcrumbs-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6c757d;
}
.breadcrumbs .breadcrumbs-list li::after {
  content: "›";
  color: #adb5bd;
  font-size: 16px;
}
.breadcrumbs .breadcrumbs-list li:last-child {
  color: #333;
  font-weight: 500;
}
.breadcrumbs .breadcrumbs-list li:last-child::after {
  display: none;
}
.breadcrumbs .breadcrumbs-list li a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumbs .breadcrumbs-list li a:hover {
  color: #e3c237;
}

.timeline-section {
  padding: 80px 0;
  background: white;
}
.timeline-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.timeline-section .timeline {
  position: relative;
  padding: 40px 0;
}
.timeline-section .timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #e3c237 0%, rgba(227, 194, 55, 0.3) 100%);
  transform: translateX(-50%);
}
.timeline-section .timeline .timeline-item {
  position: relative;
  margin-bottom: 60px;
  width: 50%;
  padding-left: 40px;
  padding-right: 40px;
}
.timeline-section .timeline .timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-section .timeline .timeline-item::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e3c237;
  border: 4px solid white;
  box-shadow: 0 0 0 4px rgba(227, 194, 55, 0.2);
  z-index: 2;
  top: 30px;
}
.timeline-section .timeline .timeline-item:nth-child(odd) {
  margin-left: 0;
  padding-right: 40px;
  padding-left: 0;
}
.timeline-section .timeline .timeline-item:nth-child(odd)::before {
  right: -10px;
}
.timeline-section .timeline .timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
}
.timeline-section .timeline .timeline-item:nth-child(even) {
  margin-left: 50%;
  padding-left: 40px;
  padding-right: 0;
}
.timeline-section .timeline .timeline-item:nth-child(even)::before {
  left: -10px;
}
.timeline-section .timeline .timeline-item:nth-child(even) .timeline-content {
  text-align: left;
}
.timeline-section .timeline .timeline-item .timeline-content {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.timeline-section .timeline .timeline-item .timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.timeline-section .timeline .timeline-item .timeline-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}
.timeline-section .timeline .timeline-item .timeline-content .timeline-category {
  display: inline-block;
  background: #e3c237;
  color: #333;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-bottom: 15px;
}
.timeline-section .timeline .timeline-item .timeline-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #6c757d;
  margin: 0;
}

@media (max-width: 768px) {
  .timeline-section .timeline::before {
    left: 20px;
  }
  .timeline-section .timeline .timeline-item {
    width: 100%;
    margin-left: 0 !important;
    margin-bottom: 40px;
    padding-left: 60px;
    padding-right: 0;
  }
  .timeline-section .timeline .timeline-item::before {
    left: 10px;
    top: 30px;
  }
  .timeline-section .timeline .timeline-item:nth-child(even) .timeline-content, .timeline-section .timeline .timeline-item:nth-child(odd) .timeline-content {
    text-align: left;
  }
}
.contact-header {
  padding: 60px 0;
  background: #f8f9fa;
  text-align: center;
}
.contact-header h1 {
  font-size: 48px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}
.contact-header p {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.form-section {
  padding: 80px 0;
  background: #f8f9fa;
}
.form-section .contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}
.form-section h2 {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}
.form-section .form-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}
.form-section .form-message {
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  display: none;
}
.form-section .form-message.success-message {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}
.form-section .form-message.error-message {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}
.form-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.form-section .form-wrapper {
  background: white;
  border-radius: 15px;
  padding: 50px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}
.form-section .contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.form-section .contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.form-section .contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-section .contact-form .form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.5px;
}
.form-section .contact-form .form-group label .required {
  color: #dc3545;
  margin-left: 4px;
}
.form-section .contact-form .form-group input,
.form-section .contact-form .form-group textarea,
.form-section .contact-form .form-group select {
  padding: 14px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Sour Gummy", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  transition: all 0.3s ease;
  background: white;
  color: #333;
}
.form-section .contact-form .form-group input:focus,
.form-section .contact-form .form-group textarea:focus,
.form-section .contact-form .form-group select:focus {
  outline: none;
  border-color: #e3c237;
  box-shadow: 0 0 0 4px rgba(227, 194, 55, 0.1);
}
.form-section .contact-form .form-group input::-moz-placeholder, .form-section .contact-form .form-group textarea::-moz-placeholder, .form-section .contact-form .form-group select::-moz-placeholder {
  color: #adb5bd;
}
.form-section .contact-form .form-group input::placeholder,
.form-section .contact-form .form-group textarea::placeholder,
.form-section .contact-form .form-group select::placeholder {
  color: #adb5bd;
}
.form-section .contact-form .form-group input:disabled,
.form-section .contact-form .form-group textarea:disabled,
.form-section .contact-form .form-group select:disabled {
  background: #f8f9fa;
  cursor: not-allowed;
}
.form-section .contact-form .form-group textarea {
  min-height: 150px;
  resize: vertical;
}
.form-section .contact-form .form-group select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23333' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 45px;
}
.form-section .contact-form .form-group .error-message {
  font-size: 13px;
  color: #dc3545;
  display: none;
}
.form-section .contact-form .form-group .error-message.active {
  display: block;
}
.form-section .contact-form .form-group .success-message {
  font-size: 13px;
  color: #28a745;
  display: none;
}
.form-section .contact-form .form-group .success-message.active {
  display: block;
}
.form-section .contact-form .form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.form-section .contact-form .form-actions .form-info {
  font-size: 13px;
  color: #6c757d;
}
.form-section .contact-form .form-actions .form-info .required {
  color: #dc3545;
}
.form-section .contact-form .form-actions .submit-btn {
  background: #e3c237;
  color: #333;
  border: none;
  padding: 15px 40px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-section .contact-form .form-actions .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(227, 194, 55, 0.3);
}
.form-section .contact-form .form-actions .submit-btn:disabled {
  background: #adb5bd;
  cursor: not-allowed;
  transform: none;
}
.form-section .contact-form .form-actions .submit-btn .loading-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid #333;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.form-section .contact-form .form-actions .submit-btn .loading-spinner.active {
  display: block;
}
.form-section .contact-info-box {
  background: #1a1a1a;
  color: white;
  padding: 40px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.form-section .contact-info-box h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.form-section .contact-info-box .info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.form-section .contact-info-box .info-item .icon {
  width: 24px;
  height: 24px;
  color: #e3c237;
  flex-shrink: 0;
  margin-top: 2px;
}
.form-section .contact-info-box .info-item .info-content h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e3c237;
  margin-bottom: 5px;
}
.form-section .contact-info-box .info-item .info-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}
.form-section .contact-info-box .info-item .info-content p a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.form-section .contact-info-box .info-item .info-content p a:hover {
  color: #e3c237;
}
.form-section .contact-info-box .social-links-box {
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.form-section .contact-info-box .social-links-box h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e3c237;
  margin-bottom: 15px;
}
.form-section .contact-info-box .social-links-box .social-links {
  display: flex;
  gap: 12px;
}
.form-section .contact-info-box .social-links-box .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.form-section .contact-info-box .social-links-box .social-links a .social-icon {
  width: 20px;
  height: 20px;
  fill: rgba(255, 255, 255, 0.6);
  transition: fill 0.3s ease;
}
.form-section .contact-info-box .social-links-box .social-links a:hover {
  background: #e3c237;
  border-color: #e3c237;
  transform: translateY(-3px);
}
.form-section .contact-info-box .social-links-box .social-links a:hover .social-icon {
  fill: #333;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 1024px) {
  .form-section .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .contact-header {
    padding: 40px 0;
  }
  .contact-header h1 {
    font-size: 32px;
  }
  .contact-header p {
    font-size: 16px;
  }
  .form-section {
    padding: 60px 0;
  }
  .form-section .form-wrapper {
    padding: 30px 20px;
  }
  .form-section .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .form-section .contact-form .form-actions {
    flex-direction: column;
    gap: 15px;
  }
  .form-section .contact-form .form-actions .form-info {
    order: 2;
  }
  .form-section .contact-form .form-actions .submit-btn {
    width: 100%;
    justify-content: center;
  }
  .form-section .contact-info-box {
    padding: 30px 20px;
  }
}
.about-page .hero {
  height: 500px;
}
.about-page .hero .quote {
  font-size: 56px;
}
.about-page .hero .quote-section p {
  font-size: 18px;
  color: #666;
  margin-top: 20px;
}
.about-page .hero .author-image {
  bottom: -85%;
  height: auto;
  right: 5%;
}
.about-page .hero .author-image img {
  max-height: 900px;
}
.about-page .content-section {
  padding-bottom: 0;
}
.about-page .content-section .container {
  padding: 0 40px;
}
.about-page .content-section .section-header {
  margin-bottom: 40px;
}
.about-page .content-section .text-content {
  max-width: 100%;
  margin: 0 auto;
}
.about-page .content-section .text-content ul {
  padding-left: 20px;
}
.about-page .timeline-section {
  padding: 60px 0;
}
.about-page .timeline-section .section-header {
  margin-bottom: 40px;
}
.about-page .about-cta-section {
  padding: 80px 0;
  background: #f8f9fa;
}
.about-page .about-cta-section .cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.about-page .about-cta-section .cta-content h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}
.about-page .about-cta-section .cta-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}
.about-page .about-cta-section .cta-content .cta-button {
  display: inline-block;
  background: #e3c237;
  color: #333;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.about-page .about-cta-section .cta-content .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(227, 194, 55, 0.3);
}

.books-page .book-hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}
.books-page .book-hero.book-hero-variant {
  background: linear-gradient(135deg, #2d1a1a 0%, #3d2424 100%);
}
.books-page .book-hero .deco-circle-1 {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(227, 194, 55, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.books-page .book-hero .deco-circle-2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(227, 194, 55, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.books-page .book-hero.book-hero-variant .deco-circle-1 {
  background: radial-gradient(circle, rgba(190, 19, 35, 0.15) 0%, transparent 70%);
}
.books-page .book-hero.book-hero-variant .deco-circle-2 {
  background: radial-gradient(circle, rgba(190, 19, 35, 0.08) 0%, transparent 70%);
}
.books-page .book-hero .container {
  position: relative;
  z-index: 1;
}
.books-page .book-hero .book-hero-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
}
.books-page .book-hero .book-cover {
  position: relative;
}
.books-page .book-hero .book-cover .glow-effect {
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background: rgba(227, 194, 55, 0.2);
  border-radius: 15px;
  filter: blur(30px);
}
.books-page .book-hero .book-cover .cover-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.books-page .book-hero .book-cover .cover-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
.books-page .book-hero.book-hero-variant .book-cover .glow-effect {
  background: rgba(190, 19, 35, 0.2);
}
.books-page .book-hero .book-info {
  color: white;
}
.books-page .book-hero .book-info .status-badge {
  display: inline-block;
  background: rgba(227, 194, 55, 0.15);
  border: 2px solid rgba(227, 194, 55, 0.4);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 25px;
}
.books-page .book-hero .book-info .status-badge span {
  color: #e3c237;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.books-page .book-hero .book-info h1, .books-page .book-hero .book-info h2 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.1;
}
.books-page .book-hero .book-info .book-meta {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}
.books-page .book-hero .book-info .book-description-block {
  border-left: 4px solid #e3c237;
  padding-left: 25px;
  margin-bottom: 40px;
}
.books-page .book-hero .book-info .book-description-block p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}
.books-page .book-hero .book-info .book-actions {
  display: flex;
  gap: 20px;
}
.books-page .book-hero .book-info .book-actions .btn-primary {
  display: inline-block;
  background: #e3c237;
  color: #1a1a1a;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.books-page .book-hero .book-info .book-actions .btn-primary:hover {
  background: #d4b32f;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(227, 194, 55, 0.4);
}
.books-page .book-hero .book-info .book-actions .btn-secondary {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.books-page .book-hero .book-info .book-actions .btn-secondary:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}
.books-page .book-hero.book-hero-variant .book-info .status-badge {
  background: rgba(190, 19, 35, 0.15);
  border-color: rgba(190, 19, 35, 0.4);
}
.books-page .book-hero.book-hero-variant .book-info .status-badge span {
  color: #be1323;
}
.books-page .book-hero.book-hero-variant .book-info .book-description-block {
  border-left-color: #be1323;
}
.books-page .book-hero.book-hero-variant .book-info .book-actions .btn-primary {
  background: #be1323;
  color: white;
}
.books-page .book-hero.book-hero-variant .book-info .book-actions .btn-primary:hover {
  background: #a8101f;
  box-shadow: 0 10px 30px rgba(190, 19, 35, 0.4);
}
.books-page .book-details-section {
  padding: 100px 0;
  background: white;
}
.books-page .book-details-section .book-details-content {
  max-width: 900px;
  margin: 0 auto;
}
.books-page .book-details-section .book-details-content .section-title {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
}
.books-page .book-details-section .book-details-content .description-box {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 50px;
}
.books-page .book-details-section .book-details-content .description-box p {
  font-size: 18px;
  line-height: 2;
  color: #333;
  margin-bottom: 30px;
}
.books-page .book-details-section .book-details-content .description-box .highlight-quote {
  font-size: 24px;
  font-weight: 600;
  color: #e3c237;
  text-align: center;
  font-family: "Oregano", cursive;
}
.books-page .book-details-section .book-details-content .book-specifications-section {
  margin-bottom: 60px;
}
.books-page .book-details-section .book-details-content .book-specifications-section h3 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}
.books-page .book-details-section .book-details-content .book-specifications-section .specifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.books-page .book-details-section .book-details-content .book-specifications-section .specifications-grid .spec-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.books-page .book-details-section .book-details-content .book-specifications-section .specifications-grid .spec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: rgba(227, 194, 55, 0.3);
}
.books-page .book-details-section .book-details-content .book-specifications-section .specifications-grid .spec-card .spec-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #e3c237 0%, #d4af2a 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.books-page .book-details-section .book-details-content .book-specifications-section .specifications-grid .spec-card .spec-icon svg {
  width: 26px;
  height: 26px;
  stroke: #1a1a1a;
}
.books-page .book-details-section .book-details-content .book-specifications-section .specifications-grid .spec-card .spec-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.books-page .book-details-section .book-details-content .book-specifications-section .specifications-grid .spec-card .spec-info .spec-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  font-weight: 600;
}
.books-page .book-details-section .book-details-content .book-specifications-section .specifications-grid .spec-card .spec-info .spec-value {
  font-size: 18px;
  color: #333;
  font-weight: 600;
}
.books-page .book-details-section .book-details-content .book-specifications-section .specifications-grid .spec-card.variant:hover {
  border-color: rgba(190, 19, 35, 0.3);
}
.books-page .book-details-section .book-details-content .book-specifications-section .specifications-grid .spec-card.variant .spec-icon {
  background: linear-gradient(135deg, #be1323 0%, #a01020 100%);
}
.books-page .book-details-section .book-details-content .book-specifications-section .specifications-grid .spec-card.variant .spec-icon svg {
  stroke: white;
}
.books-page .book-details-section .book-details-content .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.books-page .book-details-section .book-details-content .features-grid .feature-item {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.books-page .book-details-section .book-details-content .features-grid .feature-item .feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #e3c237 0%, #d4af2a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.books-page .book-details-section .book-details-content .features-grid .feature-item .feature-icon svg {
  width: 35px;
  height: 35px;
  color: #1a1a1a;
}
.books-page .book-details-section .book-details-content .features-grid .feature-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}
.books-page .book-details-section .book-details-content .features-grid .feature-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
.books-page .book-details-section .book-details-content .features-grid .feature-item.variant .feature-icon {
  background: linear-gradient(135deg, #be1323 0%, #a01020 100%);
}
.books-page .book-details-section .book-details-content .features-grid .feature-item.variant .feature-icon svg {
  color: white;
}
.books-page .book-details-section .book-details-content .supply-points-section {
  margin-top: 80px;
}
.books-page .book-details-section .book-details-content .supply-points-section h3 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
}
.books-page .book-details-section .book-details-content .supply-points-section .supply-points-box {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.books-page .book-details-section .book-details-content .supply-points-section .supply-points-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.books-page .book-details-section .book-details-content .supply-points-section .supply-points-box ul li {
  padding: 20px 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
}
.books-page .book-details-section .book-details-content .supply-points-section .supply-points-box ul li:last-child {
  border-bottom: none;
}
.books-page .book-details-section .book-details-content .supply-points-section .supply-points-box ul li svg {
  width: 24px;
  height: 24px;
  color: #e3c237;
  margin-right: 15px;
  flex-shrink: 0;
}
.books-page .book-details-section .book-details-content .supply-points-section .supply-points-box ul li a {
  font-size: 18px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.books-page .book-details-section .book-details-content .supply-points-section .supply-points-box ul li a:hover {
  color: #e3c237;
}
.books-page .book-details-section .book-details-content .supply-points-section .supply-points-box ul li span {
  font-size: 18px;
  color: #333;
  font-weight: 500;
}
.books-page .book-details-section .book-details-content .supply-points-section .supply-points-box ul li.variant svg {
  color: #be1323;
}
.books-page .book-details-section .book-details-content .supply-points-section .supply-points-box ul li.variant a:hover {
  color: #be1323;
}
.books-page .book-details-section.variant .book-details-content .description-box .highlight-quote {
  color: #be1323;
}

@media (max-width: 768px) {
  .books-page .book-hero .book-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .books-page .book-hero .book-info .book-actions {
    flex-direction: column;
    gap: 15px;
  }
  .books-page .book-hero .book-info .book-actions .btn-primary,
  .books-page .book-hero .book-info .book-actions .btn-secondary {
    width: 100%;
    text-align: center;
  }
  .books-page .book-details-section .book-specifications-section .specifications-grid {
    grid-template-columns: 1fr;
  }
  .books-page .book-details-section .features-grid {
    grid-template-columns: 1fr;
  }
}
.media-page .page-header {
  padding: 60px 0;
  background: #f8f9fa;
  text-align: center;
}
.media-page .page-header h1 {
  font-size: 48px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}
.media-page .page-header p {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}
.media-page .filters-section {
  padding: 40px 0;
  background: white;
  border-bottom: 1px solid #e9ecef;
}
.media-page .filters-section .filters-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 20px;
}
.media-page .filters-section .filters-wrapper .filter-group {
  display: flex;
  align-items: center;
  gap: 15px;
}
.media-page .filters-section .filters-wrapper .filter-group label {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}
.media-page .filters-section .filters-wrapper .filter-group .filter-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.media-page .filters-section .filters-wrapper .filter-group .filter-buttons button {
  padding: 10px 20px;
  border: 2px solid #e9ecef;
  background: white;
  color: #6c757d;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.media-page .filters-section .filters-wrapper .filter-group .filter-buttons button:hover {
  border-color: #e3c237;
  color: #333;
}
.media-page .filters-section .filters-wrapper .filter-group .filter-buttons button.active {
  border-color: #e3c237;
  background: #e3c237;
  color: #333;
}
.media-page .filters-section .filters-wrapper .filter-group select {
  padding: 10px 20px;
  border: 2px solid #e9ecef;
  background: white;
  color: #6c757d;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.media-page .filters-section .filters-wrapper .filter-group select:hover, .media-page .filters-section .filters-wrapper .filter-group select:focus {
  border-color: #e3c237;
  outline: none;
}
.media-page .filters-section .results-count {
  font-size: 14px;
  color: #666;
}
.media-page .filters-section .results-count strong {
  color: #e3c237;
  font-weight: 700;
  font-size: 16px;
}
.media-page .media-section {
  padding: 60px 0;
  background: white;
}
.media-page .media-section .media-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}
.media-page .media-section .media-gallery .media-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1;
  background: #f8f9fa;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.media-page .media-section .media-gallery .media-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.media-page .media-section .media-gallery .media-item:hover img {
  transform: scale(1.05);
}
.media-page .media-section .media-gallery .media-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.media-page .media-section .media-gallery .media-item .media-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 15px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.media-page .media-section .media-gallery .media-item .media-overlay .media-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}
.media-page .media-section .media-gallery .media-item .media-overlay .media-date {
  font-size: 12px;
  opacity: 0.9;
}
.media-page .media-section .media-gallery .media-item:hover .media-overlay {
  opacity: 1;
}
.media-page .media-section .pagination {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  gap: 10px;
}
.media-page .media-section .pagination button,
.media-page .media-section .pagination a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 2px solid #e9ecef;
  background: white;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 500;
}
.media-page .media-section .pagination button:hover,
.media-page .media-section .pagination a:hover {
  border-color: #e3c237;
  color: #333;
}
.media-page .media-section .pagination button.active,
.media-page .media-section .pagination a.active {
  border-color: #e3c237;
  background: #e3c237;
  color: #333;
  font-weight: 600;
}
.media-page .media-section .pagination button:disabled,
.media-page .media-section .pagination a:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.media-page .media-section .pagination button:disabled:hover,
.media-page .media-section .pagination a:disabled:hover {
  border-color: #e9ecef;
  color: #6c757d;
}
.media-page .video-section {
  padding: 80px 0;
  background: white;
}
.media-page .video-section .section-header {
  margin-bottom: 40px;
  border-bottom: 3px solid #e3c237;
  padding-bottom: 10px;
}
.media-page .video-section .section-header .section-title {
  font-size: 36px;
  font-weight: 600;
  color: #333;
}
.media-page .video-section .video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.media-page .video-section .video-grid .video-card {
  background: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.media-page .video-section .video-grid .video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.media-page .video-section .video-grid .video-card .video-thumbnail {
  position: relative;
  height: 300px;
  background: #d4d4d4;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.media-page .video-section .video-grid .video-card .video-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.media-page .video-section .video-grid .video-card .video-thumbnail .play-button {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(227, 194, 55, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.media-page .video-section .video-grid .video-card .video-thumbnail .play-button::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #333;
  margin-left: 5px;
}
.media-page .video-section .video-grid .video-card .video-thumbnail:hover .play-button {
  transform: scale(1.1);
  background: rgb(227, 194, 55);
}
.media-page .video-section .video-grid .video-card .video-content {
  padding: 25px;
}
.media-page .video-section .video-grid .video-card .video-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}
.media-page .video-section .video-grid .video-card .video-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}
.media-page .video-section .video-grid .video-card .video-content .video-meta {
  font-size: 13px;
  color: #999;
}
.media-page .video-section .video-grid .video-card .video-content .video-meta span {
  margin-right: 10px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  overflow: hidden;
}
.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .modal-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 50px;
  font-weight: 300;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.3s ease;
}
.modal .modal-close:hover {
  color: #e3c237;
}
.modal .modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 60px;
  font-weight: 300;
  cursor: pointer;
  z-index: 10001;
  padding: 20px;
  transition: color 0.3s ease;
}
.modal .modal-nav:hover {
  color: #e3c237;
}
.modal .modal-nav.prev {
  left: 20px;
}
.modal .modal-nav.next {
  right: 20px;
}
.modal .modal-content {
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .modal-content img {
  max-width: 100%;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}

@media (max-width: 1200px) {
  .media-page .media-section .media-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .media-page .page-header {
    padding: 40px 0;
  }
  .media-page .page-header h1 {
    font-size: 32px;
  }
  .media-page .page-header p {
    font-size: 16px;
  }
  .media-page .filters-section .filters-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
  .media-page .filters-section .filters-wrapper .filter-group {
    flex-direction: column;
    align-items: stretch;
  }
  .media-page .filters-section .filters-wrapper .filter-group .filter-buttons button {
    flex: 1;
  }
  .media-page .media-section .media-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .media-page .video-section {
    padding: 40px 0;
  }
  .media-page .video-section .video-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .media-page .video-section .video-grid .video-card .video-thumbnail {
    height: 250px;
  }
}
@media (max-width: 480px) {
  .media-page .media-section .media-gallery {
    grid-template-columns: 1fr;
  }
  .media-page .pagination button,
  .media-page .pagination a {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}
.awards-page .page-header {
  padding: 60px 0;
  background: #f8f9fa;
  text-align: center;
}
.awards-page .page-header h1 {
  font-size: 48px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}
.awards-page .page-header p {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}
.awards-page .awards-list-section {
  padding: 80px 0;
  background: white;
}
.awards-page .awards-list-section .section-header {
  margin-bottom: 30px;
  text-align: center;
}
.awards-page .awards-list-section .section-header .section-title {
  font-size: 42px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}
.awards-page .awards-list-section .section-header .section-description {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}
.awards-page .awards-list-section .filters-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 12px;
  flex-wrap: wrap;
}
.awards-page .awards-list-section .filters-wrapper .filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.awards-page .awards-list-section .filters-wrapper .filter-group .filter-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.awards-page .awards-list-section .filters-wrapper .filter-group .filter-buttons .filter-btn {
  padding: 10px 24px;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  color: #6c757d;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.awards-page .awards-list-section .filters-wrapper .filter-group .filter-buttons .filter-btn:hover {
  border-color: #e3c237;
  color: #333;
  background: rgba(227, 194, 55, 0.1);
}
.awards-page .awards-list-section .filters-wrapper .filter-group .filter-buttons .filter-btn.active {
  background: #e3c237;
  border-color: #e3c237;
  color: #333;
  font-weight: 700;
}
.awards-page .awards-list-section .filters-wrapper .results-count {
  font-size: 14px;
  color: #6c757d;
}
.awards-page .awards-list-section .filters-wrapper .results-count strong {
  color: #333;
  font-weight: 700;
  font-size: 18px;
}
.awards-page .awards-list-section .awards-list {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
.awards-page .awards-list-section .awards-list .award-item {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  border-left: 5px solid #e3c237;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.awards-page .awards-list-section .awards-list .award-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  background: white;
}
.awards-page .awards-list-section .awards-list .award-item .award-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.awards-page .awards-list-section .awards-list .award-item .award-item-header .award-item-category {
  display: inline-block;
  background: #e3c237;
  color: #333;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.awards-page .awards-list-section .awards-list .award-item .award-item-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px 0;
  line-height: 1.4;
}
.awards-page .awards-list-section .awards-list .award-item .award-item-organization {
  font-size: 15px;
  color: #666;
  margin-bottom: 12px;
  font-weight: 500;
}
.awards-page .awards-list-section .awards-list .award-item .award-item-description {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin: 10px 0 0 0;
  padding-top: 12px;
  border-top: 1px solid #e9ecef;
}
.awards-page .awards-gallery-section {
  padding: 80px 0;
  background: #fff;
}
.awards-page .awards-gallery-section .section-header {
  margin-bottom: 40px;
  text-align: center;
}
.awards-page .awards-gallery-section .section-header .section-title {
  font-size: 36px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}
.awards-page .awards-gallery-section .section-header .section-description {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}
.awards-page .awards-gallery-section .awards-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}
.awards-page .awards-gallery-section .awards-gallery .award-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1;
  background: white;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.awards-page .awards-gallery-section .awards-gallery .award-gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.awards-page .awards-gallery-section .awards-gallery .award-gallery-item:hover img {
  transform: scale(1.05);
}
.awards-page .awards-gallery-section .awards-gallery .award-gallery-item:hover .award-overlay {
  opacity: 1;
}
.awards-page .awards-gallery-section .awards-gallery .award-gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.awards-page .awards-gallery-section .awards-gallery .award-gallery-item .award-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.awards-page .awards-gallery-section .awards-gallery .award-gallery-item .award-overlay .award-category {
  font-size: 11px;
  color: #e3c237;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}
.awards-page .awards-gallery-section .awards-gallery .award-gallery-item .award-overlay .award-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}
.awards-page .awards-gallery-section .awards-gallery .award-gallery-item .award-overlay .award-description {
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.4;
}
.awards-page .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
  padding: 20px 0;
}
.awards-page .pagination .pagination-btn {
  min-width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  color: #6c757d;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.awards-page .pagination .pagination-btn:hover {
  background: rgba(227, 194, 55, 0.1);
  border-color: #e3c237;
  color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(227, 194, 55, 0.2);
}
.awards-page .pagination .pagination-btn.active {
  background: #e3c237;
  border-color: #e3c237;
  color: #333;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(227, 194, 55, 0.3);
  transform: translateY(-2px);
}
.awards-page .pagination .pagination-btn:active {
  transform: translateY(0);
}
.awards-page .awards-videos-section {
  padding: 80px 0;
  background: white;
}
.awards-page .awards-videos-section .section-header {
  margin-bottom: 40px;
  text-align: center;
}
.awards-page .awards-videos-section .section-header .section-title {
  font-size: 36px;
  font-weight: 600;
  color: #333;
}
.awards-page .awards-videos-section .videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.awards-page .awards-videos-section .videos-grid .video-card {
  background: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.awards-page .awards-videos-section .videos-grid .video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.awards-page .awards-videos-section .videos-grid .video-card .video-thumbnail {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #d4d4d4;
  cursor: pointer;
  overflow: hidden;
}
.awards-page .awards-videos-section .videos-grid .video-card .video-thumbnail iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.awards-page .awards-videos-section .videos-grid .video-card .video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.awards-page .awards-videos-section .videos-grid .video-card .video-thumbnail .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(227, 194, 55, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.awards-page .awards-videos-section .videos-grid .video-card .video-thumbnail .play-button::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #333;
  margin-left: 5px;
}
.awards-page .awards-videos-section .videos-grid .video-card .video-thumbnail:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgb(227, 194, 55);
}
.awards-page .awards-videos-section .videos-grid .video-card .video-content {
  padding: 25px;
}
.awards-page .awards-videos-section .videos-grid .video-card .video-content .video-year {
  font-size: 13px;
  color: #999;
  margin-bottom: 8px;
}
.awards-page .awards-videos-section .videos-grid .video-card .video-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}
.awards-page .awards-videos-section .videos-grid .video-card .video-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
.awards-page .awards-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  text-align: center;
}
.awards-page .awards-hero .achievement-badge {
  display: inline-block;
  background: rgba(227, 194, 55, 0.1);
  border: 2px solid #e3c237;
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 20px;
}
.awards-page .awards-hero .achievement-badge span {
  color: #e3c237;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.awards-page .awards-hero h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Oregano", cursive;
  line-height: 1.2;
}
.awards-page .awards-hero .hero-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.awards-page .awards-hero .stats-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.awards-page .awards-hero .stats-container .stat-item .stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #e3c237;
  margin-bottom: 5px;
}
.awards-page .awards-hero .stats-container .stat-item .stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}
.awards-page .featured-awards-section {
  padding: 80px 0;
  background: #f8f9fa;
}
.awards-page .featured-awards-section .section-header {
  margin-bottom: 40px;
  border-bottom: 3px solid #e3c237;
  padding-bottom: 10px;
}
.awards-page .featured-awards-section .section-header .section-title {
  font-size: 36px;
  font-weight: 600;
  color: #333;
}
.awards-page .featured-awards-section .featured-awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.awards-page .featured-awards-section .featured-awards-grid .award-card {
  background: white;
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #e3c237;
  transition: all 0.3s ease;
}
.awards-page .featured-awards-section .featured-awards-grid .award-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.awards-page .featured-awards-section .featured-awards-grid .award-card .award-icon {
  width: 80px;
  height: 80px;
  background: #e3c237;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
.awards-page .featured-awards-section .featured-awards-grid .award-card .award-year {
  color: #999;
  font-size: 14px;
  margin-bottom: 10px;
}
.awards-page .featured-awards-section .featured-awards-grid .award-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}
.awards-page .featured-awards-section .featured-awards-grid .award-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
.awards-page .international-section {
  padding: 80px 0;
  background: white;
}
.awards-page .international-section .section-header {
  margin-bottom: 40px;
  border-bottom: 3px solid #e3c237;
  padding-bottom: 10px;
}
.awards-page .international-section .section-header .section-title {
  font-size: 36px;
  font-weight: 600;
  color: #333;
}
.awards-page .international-section .recognition-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.awards-page .international-section .recognition-grid .recognition-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #e3c237;
}
.awards-page .international-section .recognition-grid .recognition-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}
.awards-page .international-section .recognition-grid .recognition-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}
.awards-page .international-section .recognition-grid .recognition-card .language-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.awards-page .international-section .recognition-grid .recognition-card .language-tags span {
  background: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: #666;
}
.awards-page .international-section .recognition-grid .recognition-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.awards-page .international-section .recognition-grid .recognition-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
  font-size: 14px;
  color: #666;
}
.awards-page .international-section .recognition-grid .recognition-card ul li:last-child {
  border-bottom: none;
}

@media (max-width: 1200px) {
  .awards-page .awards-gallery-section .awards-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .awards-page .featured-awards-section .featured-awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .awards-page .page-header {
    padding: 40px 0;
  }
  .awards-page .page-header h1 {
    font-size: 32px;
  }
  .awards-page .page-header p {
    font-size: 16px;
  }
  .awards-page .pagination {
    gap: 6px;
    flex-wrap: wrap;
  }
  .awards-page .pagination .pagination-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
  }
  .awards-page .awards-list-section {
    padding: 60px 0;
  }
  .awards-page .awards-list-section .section-header .section-title {
    font-size: 32px;
  }
  .awards-page .awards-list-section .filters-wrapper {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 15px;
  }
  .awards-page .awards-list-section .filters-wrapper .filter-group {
    flex-direction: column;
    align-items: stretch;
  }
  .awards-page .awards-list-section .filters-wrapper .filter-group .filter-buttons {
    justify-content: center;
  }
  .awards-page .awards-list-section .filters-wrapper .results-count {
    text-align: center;
  }
  .awards-page .awards-list-section .awards-list .award-item {
    padding: 20px;
  }
  .awards-page .awards-list-section .awards-list .award-item .award-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .awards-page .awards-list-section .awards-list .award-item .award-item-title {
    font-size: 18px;
  }
  .awards-page .awards-list-section .awards-list .award-item .award-item-organization {
    font-size: 14px;
  }
  .awards-page .awards-gallery-section {
    padding: 60px 0;
  }
  .awards-page .awards-gallery-section .awards-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .awards-page .awards-videos-section {
    padding: 60px 0;
  }
  .awards-page .awards-videos-section .videos-grid {
    grid-template-columns: 1fr;
  }
  .awards-page .awards-hero {
    padding: 60px 0;
  }
  .awards-page .awards-hero h1 {
    font-size: 36px;
  }
  .awards-page .awards-hero .stats-container {
    gap: 30px;
  }
  .awards-page .awards-hero .stats-container .stat-item .stat-number {
    font-size: 36px;
  }
  .awards-page .featured-awards-section .featured-awards-grid {
    grid-template-columns: 1fr;
  }
  .awards-page .international-section .recognition-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .awards-page .awards-gallery-section .awards-gallery {
    grid-template-columns: 1fr;
  }
  .awards-page .awards-hero h1 {
    font-size: 28px;
  }
  .awards-page .awards-hero .hero-description {
    font-size: 16px;
  }
  .awards-page .awards-hero .stats-container {
    flex-direction: column;
    gap: 20px;
  }
}
.publications-page {
  padding: 60px 0 100px;
  background: #f8f9fa;
}
.publications-page .page-header {
  text-align: center;
  margin-bottom: 50px;
}
.publications-page .page-header h1 {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}
.publications-page .page-header .subtitle {
  font-size: 18px;
  color: #666;
}
.publications-page .publication-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.publications-page .publication-tabs .publication-tab {
  padding: 12px 30px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.publications-page .publication-tabs .publication-tab:hover {
  border-color: #e3c237;
  transform: translateY(-2px);
}
.publications-page .publication-tabs .publication-tab.active {
  background: #e3c237;
  border-color: #e3c237;
  color: #1a1a1a;
}
.publications-page .publications-section {
  margin-bottom: 80px;
}
.publications-page .publications-section .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 3px solid #e3c237;
  display: inline-block;
}
.publications-page .publications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}
.publications-page .publication-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}
.publications-page .publication-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.publications-page .publication-card:hover .publication-cover img {
  transform: scale(1.05);
}
.publications-page .publication-card:hover .publication-cover .pdf-icon,
.publications-page .publication-card:hover .publication-cover .placeholder-icon {
  transform: scale(1.1);
}
.publications-page .publication-card .publication-cover {
  position: relative;
  height: 250px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.publications-page .publication-card .publication-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.publications-page .publication-card .publication-cover .pdf-icon,
.publications-page .publication-card .publication-cover .placeholder-icon {
  font-size: 80px;
  transition: transform 0.3s ease;
}
.publications-page .publication-card .publication-cover .type-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.publications-page .publication-card .publication-cover .type-badge.badge-academic {
  background: #28a745;
  color: white;
}
.publications-page .publication-card .publication-cover .type-badge.badge-standard {
  background: #007bff;
  color: white;
}
.publications-page .publication-card .publication-info {
  padding: 25px;
}
.publications-page .publication-card .publication-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
}
.publications-page .publication-card .publication-info .publication-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 14px;
  color: #666;
}
.publications-page .publication-card .publication-info .publication-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.publications-page .publication-card .publication-info .publication-meta .meta-item svg {
  width: 16px;
  height: 16px;
  stroke: #999;
}
.publications-page .empty-state {
  text-align: center;
  padding: 100px 20px;
  background: white;
  border-radius: 12px;
}
.publications-page .empty-state .empty-icon {
  font-size: 80px;
  margin-bottom: 20px;
}
.publications-page .empty-state h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}
.publications-page .empty-state p {
  font-size: 16px;
  color: #666;
}

@media (max-width: 768px) {
  .publications-page {
    padding: 40px 0 60px;
  }
  .publications-page .page-header h1 {
    font-size: 32px;
  }
  .publications-page .page-header .subtitle {
    font-size: 16px;
  }
  .publications-page .publication-tabs {
    gap: 10px;
  }
  .publications-page .publication-tabs .publication-tab {
    padding: 10px 20px;
    font-size: 14px;
  }
  .publications-page .publications-section {
    margin-bottom: 50px;
  }
  .publications-page .publications-section .section-title {
    font-size: 24px;
  }
  .publications-page .publications-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.viewer-body {
  background: #f8f9fa;
}
.viewer-body header {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.viewer-body footer {
  background: white;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.publication-viewer .viewer-header {
  background: white;
  padding: 30px 0;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.publication-viewer .viewer-header .viewer-title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.publication-viewer .viewer-header .viewer-title .back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #f5f5f5;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.publication-viewer .viewer-header .viewer-title .back-button:hover {
  background: #e3c237;
  color: #1a1a1a;
}
.publication-viewer .viewer-header .viewer-title .back-button svg {
  width: 20px;
  height: 20px;
}
.publication-viewer .viewer-header .viewer-title h1 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin: 0;
  flex: 1;
}
.publication-viewer .viewer-header .viewer-title .type-badge {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}
.publication-viewer .viewer-header .viewer-title .type-badge.badge-academic {
  background: #28a745;
  color: white;
}
.publication-viewer .viewer-header .viewer-title .type-badge.badge-standard {
  background: #007bff;
  color: white;
}
.publication-viewer .viewer-header .viewer-meta {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #666;
}
.publication-viewer .page-counter {
  position: fixed;
  top: 150px;
  right: 30px;
  background: white;
  color: #333;
  padding: 15px 25px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: 2px solid #e0e0e0;
}
.publication-viewer .page-counter #current-page {
  color: #e3c237;
}
.publication-viewer .zoom-controls {
  position: fixed;
  top: 220px;
  right: 30px;
  background: white;
  padding: 12px 15px;
  border-radius: 50px;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: 2px solid #e0e0e0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.publication-viewer .zoom-controls .zoom-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  color: #333;
}
.publication-viewer .zoom-controls .zoom-btn:hover {
  background: #f5f5f5;
  color: #e3c237;
}
.publication-viewer .zoom-controls .zoom-btn svg {
  width: 20px;
  height: 20px;
}
.publication-viewer .zoom-controls #zoom-level {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  min-width: 45px;
  text-align: center;
}
.publication-viewer .unified-viewer-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  position: relative;
}
.publication-viewer .unified-viewer-container #pdf-container {
  width: 100%;
  max-height: 600px;
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
.publication-viewer .unified-viewer-container #pdf-container #pdf-canvas {
  display: block;
  flex-shrink: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  background: white;
  border-radius: 8px;
}
.publication-viewer .unified-viewer-container #pdf-container .loading-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: #333;
}
.publication-viewer .unified-viewer-container #pdf-container .loading-indicator .spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #e0e0e0;
  border-top-color: #e3c237;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.publication-viewer .unified-viewer-container #pdf-container .loading-indicator p {
  font-size: 16px;
  font-weight: 500;
}
.publication-viewer .unified-viewer-container #image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: auto;
  display: flex;
  justify-content: center;
}
.publication-viewer .unified-viewer-container #image-container {
  display: inline-block;
  transition: transform 0.3s ease;
  transform-origin: top center;
}
.publication-viewer .unified-viewer-container #image-container img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}
.publication-viewer .viewer-controls {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.publication-viewer .viewer-controls .control-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: #e3c237;
  color: #1a1a1a;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.publication-viewer .viewer-controls .control-btn:hover:not(:disabled) {
  background: #d4b32f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(227, 194, 55, 0.4);
}
.publication-viewer .viewer-controls .control-btn:disabled {
  background: #e0e0e0;
  color: #999;
  cursor: not-allowed;
  opacity: 0.6;
}
.publication-viewer .viewer-controls .control-btn svg {
  width: 24px;
  height: 24px;
}
.publication-viewer .viewer-footer {
  background: white;
  padding: 20px 0;
  margin-top: 60px;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
}
.publication-viewer .viewer-footer p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #666;
  font-size: 14px;
  margin: 0;
}
.publication-viewer .viewer-footer p svg {
  width: 16px;
  height: 16px;
  stroke: #999;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .publication-viewer .viewer-header {
    padding: 20px 0;
  }
  .publication-viewer .viewer-header .viewer-title h1 {
    font-size: 20px;
  }
  .publication-viewer .viewer-header .viewer-title .back-button {
    padding: 8px 15px;
    font-size: 14px;
  }
  .publication-viewer .viewer-header .viewer-title .type-badge {
    padding: 6px 12px;
    font-size: 11px;
  }
  .publication-viewer .page-counter {
    top: auto;
    bottom: 90px;
    right: 20px;
    padding: 12px 20px;
    font-size: 16px;
  }
  .publication-viewer .zoom-controls {
    top: auto;
    bottom: 20px;
    right: 20px;
    padding: 10px 12px;
    gap: 8px;
  }
  .publication-viewer .zoom-controls .zoom-btn {
    padding: 6px;
  }
  .publication-viewer .zoom-controls .zoom-btn svg {
    width: 18px;
    height: 18px;
  }
  .publication-viewer .zoom-controls #zoom-level {
    font-size: 13px;
    min-width: 40px;
  }
  .publication-viewer .unified-viewer-container {
    margin: 20px auto;
    min-height: 400px;
  }
  .publication-viewer .viewer-controls {
    margin: 30px auto;
    flex-direction: column;
  }
  .publication-viewer .viewer-controls .control-btn {
    width: 100%;
    justify-content: center;
    padding: 15px 25px;
  }
  .publication-viewer .viewer-controls .control-btn span {
    flex: 1;
    text-align: center;
  }
  .publication-viewer .viewer-footer p {
    font-size: 12px;
    text-align: center;
    padding: 0 15px;
  }
}
.news-page .page-header {
  padding: 60px 0;
  background: #f8f9fa;
  text-align: center;
}
.news-page .page-header h1 {
  font-size: 48px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}
.news-page .page-header p {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}
.news-page .news-list-section {
  padding: 60px 0;
  background: white;
}
.news-page .news-list-section .news-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 60px;
}
.news-page .news-list-section .news-list .news-item-link {
  text-decoration: none;
  display: block;
  cursor: pointer;
  color: inherit;
}
.news-page .news-list-section .news-list .news-item-link:visited {
  color: inherit;
}
.news-page .news-list-section .news-list .news-item {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
}
.news-page .news-list-section .news-list .news-item-link:hover .news-item {
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  border-color: #e3c237;
}
.news-page .news-list-section .news-list .news-image {
  display: none;
}
.news-page .news-list-section .news-list .news-content .news-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
  font-size: 13px;
  color: #999;
}
.news-page .news-list-section .news-list .news-content .news-meta .news-date {
  display: flex;
  align-items: center;
  gap: 5px;
}
.news-page .news-list-section .news-list .news-content .news-meta .news-date svg {
  width: 14px;
  height: 14px;
  color: #e3c237;
}
.news-page .news-list-section .news-list .news-content h2 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-page .news-list-section .news-list .news-content .news-excerpt {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
  margin-bottom: 0;
  margin-top: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-page .news-list-section .news-list .news-content .read-more {
  display: none;
}
.news-page .news-list-section .no-content {
  text-align: center;
  padding: 80px 20px;
  color: #999;
}
.news-page .news-list-section .no-content p {
  font-size: 18px;
}
.news-page .news-list-section .pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.news-page .news-list-section .pagination a, .news-page .news-list-section .pagination span {
  min-width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 2px solid #e9ecef;
  background: white;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 500;
  padding: 0 12px;
}
.news-page .news-list-section .pagination a:hover:not(.disabled):not(span), .news-page .news-list-section .pagination span:hover:not(.disabled):not(span) {
  border-color: #e3c237;
  color: #333;
}
.news-page .news-list-section .pagination a.active, .news-page .news-list-section .pagination span.active {
  border-color: #e3c237;
  background: #e3c237;
  color: #333;
  font-weight: 600;
}
.news-page .news-list-section .pagination a.disabled, .news-page .news-list-section .pagination span.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.news-page .news-list-section .pagination span {
  border: none;
  background: none;
}

.news-detail-page .news-detail-section {
  padding: 80px 0;
  background: white;
}
.news-detail-page .news-detail-section .news-detail {
  max-width: 900px;
  margin: 0 auto;
}
.news-detail-page .news-detail-section .news-detail .news-header {
  margin-bottom: 30px;
}
.news-detail-page .news-detail-section .news-detail .news-header h1 {
  font-size: 42px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
  margin-bottom: 20px;
}
.news-detail-page .news-detail-section .news-detail .news-header .news-meta {
  display: flex;
  gap: 20px;
  font-size: 15px;
  color: #666;
  padding-bottom: 20px;
  border-bottom: 2px solid #f8f9fa;
}
.news-detail-page .news-detail-section .news-detail .news-header .news-meta .news-date {
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-detail-page .news-detail-section .news-detail .news-header .news-meta .news-date svg {
  color: #e3c237;
}
.news-detail-page .news-detail-section .news-detail .news-featured-image {
  margin-bottom: 40px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}
.news-detail-page .news-detail-section .news-detail .news-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}
.news-detail-page .news-detail-section .news-detail .news-content {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}
.news-detail-page .news-detail-section .news-detail .news-content p {
  margin-bottom: 20px;
}
.news-detail-page .news-detail-section .news-detail .news-content p:last-child {
  margin-bottom: 0;
}
.news-detail-page .news-detail-section .news-detail .news-content h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 40px 0 20px;
  color: #333;
}
.news-detail-page .news-detail-section .news-detail .news-content h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 30px 0 15px;
  color: #333;
}
.news-detail-page .news-detail-section .news-detail .news-content ul, .news-detail-page .news-detail-section .news-detail .news-content ol {
  margin: 20px 0;
  padding-left: 30px;
}
.news-detail-page .news-detail-section .news-detail .news-content ul li, .news-detail-page .news-detail-section .news-detail .news-content ol li {
  margin-bottom: 10px;
}
.news-detail-page .news-detail-section .news-detail .news-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
}
.news-detail-page .news-detail-section .news-detail .news-content blockquote {
  border-left: 4px solid #e3c237;
  padding: 20px 30px;
  margin: 30px 0;
  background: #f8f9fa;
  font-style: italic;
  color: #666;
}
.news-detail-page .news-detail-section .news-detail .news-content .external-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e3c237;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
}
.news-detail-page .news-detail-section .news-detail .news-content .external-link:hover {
  gap: 12px;
}
.news-detail-page .news-detail-section .news-detail .news-footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 2px solid #f8f9fa;
}
.news-detail-page .news-detail-section .news-detail .news-footer .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #666;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.news-detail-page .news-detail-section .news-detail .news-footer .back-link:hover {
  color: #e3c237;
  gap: 12px;
}

@media (max-width: 768px) {
  .news-page .page-header {
    padding: 40px 0;
  }
  .news-page .page-header h1 {
    font-size: 32px;
  }
  .news-page .page-header p {
    font-size: 16px;
  }
  .news-page .news-list-section {
    padding: 60px 0;
  }
  .news-page .news-list-section .news-list {
    gap: 20px;
  }
  .news-page .news-list-section .news-list .news-item {
    grid-template-columns: 1fr;
  }
  .news-page .news-list-section .news-list .news-item .news-image {
    width: 100%;
    height: 200px;
  }
  .news-page .news-list-section .news-list .news-item .news-content {
    padding: 20px;
  }
  .news-page .news-list-section .news-list .news-item .news-content h2 {
    font-size: 20px;
  }
  .news-page .news-list-section .pagination a, .news-page .news-list-section .pagination span {
    min-width: 35px;
    height: 35px;
    font-size: 14px;
  }
  .news-detail-page .news-detail-section {
    padding: 60px 0;
  }
  .news-detail-page .news-detail-section .news-detail .news-header h1 {
    font-size: 28px;
  }
  .news-detail-page .news-detail-section .news-detail .news-content {
    font-size: 16px;
  }
  .news-detail-page .news-detail-section .news-detail .news-content h2 {
    font-size: 24px;
  }
  .news-detail-page .news-detail-section .news-detail .news-content h3 {
    font-size: 20px;
  }
}
.faq-page .faq-header {
  padding: 80px 0;
  background: linear-gradient(135deg, #e3c237 0%, #d4af2a 100%);
  text-align: center;
}
.faq-page .faq-header .status-badge {
  display: inline-block;
  background: rgba(26, 26, 26, 0.1);
  border: 2px solid rgba(26, 26, 26, 0.2);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 20px;
}
.faq-page .faq-header .status-badge span {
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.faq-page .faq-header h1 {
  font-size: 56px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-family: "Oregano", cursive;
  line-height: 1.2;
}
.faq-page .faq-header p {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.7);
  max-width: 700px;
  margin: 0 auto;
}
.faq-page .faq-section {
  padding: 100px 0;
  background: white;
}
.faq-page .faq-section .faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.faq-page .faq-section .faq-list .faq-item {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  border-left: 4px solid #e3c237;
  transition: all 0.3s ease;
}
.faq-page .faq-section .faq-list .faq-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}
.faq-page .faq-section .faq-list .faq-item .faq-content {
  display: flex;
  align-items: start;
  gap: 20px;
}
.faq-page .faq-section .faq-list .faq-item .faq-content .faq-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e3c237 0%, #d4af2a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-page .faq-section .faq-list .faq-item .faq-content .faq-icon svg {
  width: 24px;
  height: 24px;
  color: #1a1a1a;
}
.faq-page .faq-section .faq-list .faq-item .faq-content .faq-text {
  flex: 1;
}
.faq-page .faq-section .faq-list .faq-item .faq-content .faq-text h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}
.faq-page .faq-section .faq-list .faq-item .faq-content .faq-text p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 0;
}
.faq-page .faq-section .faq-list .faq-item .faq-content .faq-text p a {
  color: #e3c237;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.faq-page .faq-section .faq-list .faq-item .faq-content .faq-text p a:hover {
  opacity: 0.8;
}
.faq-page .faq-section .no-faq {
  text-align: center;
  padding: 80px 20px;
  color: #999;
}
.faq-page .faq-section .no-faq p {
  font-size: 18px;
}
.faq-page .faq-section .faq-cta {
  text-align: center;
  margin-top: 60px;
  padding: 50px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 20px;
}
.faq-page .faq-section .faq-cta h3 {
  font-size: 28px;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
}
.faq-page .faq-section .faq-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}
.faq-page .faq-section .faq-cta .btn-cta {
  display: inline-block;
  background: #e3c237;
  color: #1a1a1a;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.faq-page .faq-section .faq-cta .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(227, 194, 55, 0.3);
}

@media (max-width: 768px) {
  .faq-page .faq-header {
    padding: 60px 0;
  }
  .faq-page .faq-header h1 {
    font-size: 36px;
  }
  .faq-page .faq-header p {
    font-size: 16px;
  }
  .faq-page .faq-section {
    padding: 60px 0;
  }
  .faq-page .faq-section .faq-list .faq-item {
    padding: 30px 20px;
  }
  .faq-page .faq-section .faq-list .faq-item .faq-content {
    gap: 15px;
  }
  .faq-page .faq-section .faq-list .faq-item .faq-content .faq-icon {
    width: 40px;
    height: 40px;
  }
  .faq-page .faq-section .faq-list .faq-item .faq-content .faq-icon svg {
    width: 20px;
    height: 20px;
  }
  .faq-page .faq-section .faq-list .faq-item .faq-content .faq-text h3 {
    font-size: 18px;
  }
  .faq-page .faq-section .faq-list .faq-item .faq-content .faq-text p {
    font-size: 14px;
  }
  .faq-page .faq-section .faq-cta {
    padding: 40px 20px;
  }
  .faq-page .faq-section .faq-cta h3 {
    font-size: 22px;
  }
  .faq-page .faq-section .faq-cta p {
    font-size: 14px;
  }
}
.legal-page .legal-header {
  padding: 60px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  text-align: center;
}
.legal-page .legal-header .status-badge {
  display: inline-block;
  background: rgba(227, 194, 55, 0.1);
  border: 2px solid #e3c237;
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 20px;
}
.legal-page .legal-header .status-badge span {
  color: #e3c237;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.legal-page .legal-header h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}
.legal-page .legal-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
}
.legal-page .legal-header .last-updated {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 20px;
}
.legal-page .legal-content {
  padding: 80px 0;
  background: white;
}
.legal-page .legal-content .content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.legal-page .legal-content .content-wrapper .legal-section {
  margin-bottom: 50px;
}
.legal-page .legal-content .content-wrapper .legal-section h2 {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid #e3c237;
}
.legal-page .legal-content .content-wrapper .legal-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 30px 0 15px;
}
.legal-page .legal-content .content-wrapper .legal-section p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}
.legal-page .legal-content .content-wrapper .legal-section ul {
  list-style: none;
  padding-left: 0;
}
.legal-page .legal-content .content-wrapper .legal-section ul li {
  padding: 12px 20px;
  margin-bottom: 10px;
  background: #f8f9fa;
  border-left: 4px solid #e3c237;
  font-size: 15px;
  color: #666;
}
.legal-page .legal-content .content-wrapper .legal-section ol {
  padding-left: 25px;
}
.legal-page .legal-content .content-wrapper .legal-section ol li {
  padding: 8px 0;
  margin-bottom: 10px;
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}
.legal-page .legal-content .content-wrapper .legal-section .data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.legal-page .legal-content .content-wrapper .legal-section .data-grid .data-item {
  padding: 25px;
  background: #f8f9fa;
  border-radius: 10px;
}
.legal-page .legal-content .content-wrapper .legal-section .data-grid .data-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px;
}
.legal-page .legal-content .content-wrapper .legal-section .data-grid .data-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
.legal-page .legal-content .content-wrapper .legal-section .contact-box {
  background: linear-gradient(135deg, #e3c237 0%, #d4af2a 100%);
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
}
.legal-page .legal-content .content-wrapper .legal-section .contact-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 15px;
}
.legal-page .legal-content .content-wrapper .legal-section .contact-box p {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.7);
  margin: 10px 0;
}
.legal-page .legal-content .content-wrapper .legal-section .contact-box p strong {
  color: #1a1a1a;
  font-weight: 600;
}
.legal-page .legal-content .content-wrapper .legal-section .contact-box p a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}
.legal-page .legal-content .content-wrapper .legal-section .contact-box p a:hover {
  opacity: 0.7;
}
.legal-page .legal-content .content-wrapper .legal-section .highlight-box {
  background: #fff8e1;
  border-left: 4px solid #ffc107;
  padding: 20px 25px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
}
.legal-page .legal-content .content-wrapper .legal-section .highlight-box p {
  margin: 0;
  color: #856404;
  font-size: 15px;
}

@media (max-width: 768px) {
  .legal-page .legal-header {
    padding: 40px 0;
  }
  .legal-page .legal-header h1 {
    font-size: 32px;
  }
  .legal-page .legal-header p {
    font-size: 14px;
  }
  .legal-page .legal-content {
    padding: 60px 0;
  }
  .legal-page .legal-content .content-wrapper .legal-section h2 {
    font-size: 24px;
  }
  .legal-page .legal-content .content-wrapper .legal-section h3 {
    font-size: 18px;
  }
  .legal-page .legal-content .content-wrapper .legal-section p, .legal-page .legal-content .content-wrapper .legal-section ul li, .legal-page .legal-content .content-wrapper .legal-section ol li {
    font-size: 14px;
  }
  .legal-page .legal-content .content-wrapper .legal-section .data-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .legal-page .legal-content .content-wrapper .legal-section .data-grid .data-item {
    padding: 20px;
  }
  .legal-page .legal-content .content-wrapper .legal-section .contact-box {
    padding: 20px;
  }
  .legal-page .legal-content .content-wrapper .legal-section .contact-box h3 {
    font-size: 18px;
  }
  .legal-page .legal-content .content-wrapper .legal-section .contact-box p {
    font-size: 14px;
  }
}
body.dark-mode {
  background: #1a1a1a;
  color: #e4e4e4;
}
body.dark-mode header .top-bar {
  background: #2d2d2d;
  border-bottom-color: #404040;
}
body.dark-mode header .top-bar .contact-info {
  color: #b0b0b0;
}
body.dark-mode header .top-bar .lang-switcher a {
  color: #b0b0b0;
}
body.dark-mode header .top-bar .lang-switcher a:hover, body.dark-mode header .top-bar .lang-switcher a.active {
  color: #e3c237;
}
body.dark-mode header .top-bar .theme-toggle {
  border-color: #b0b0b0;
  color: #e4e4e4;
}
body.dark-mode header .top-bar .theme-toggle:hover {
  border-color: #e3c237;
}
body.dark-mode header .main-nav {
  background: #1a1a1a;
  border-bottom-color: #404040;
}
body.dark-mode header .main-nav a {
  color: #e4e4e4;
}
body.dark-mode header .main-nav a:hover {
  color: #e3c237;
}
body.dark-mode .hero {
  background: #2d2d2d;
}
body.dark-mode .hero .quote {
  color: #e4e4e4;
}
body.dark-mode .hero .slider-controls button {
  background: rgba(255, 255, 255, 0.1);
  color: #e4e4e4;
}
body.dark-mode .hero .slider-controls button:hover {
  background: rgba(255, 255, 255, 0.2);
}
body.dark-mode .hero .slider-dots .dot {
  border-color: #e4e4e4;
}
body.dark-mode .hero .slider-dots .dot.active {
  background: #e4e4e4;
}
body.dark-mode .content-section,
body.dark-mode .info-section {
  background: #1a1a1a;
}
body.dark-mode .content-section h2, body.dark-mode .content-section h3,
body.dark-mode .info-section h2,
body.dark-mode .info-section h3 {
  color: #e4e4e4;
}
body.dark-mode .content-section p,
body.dark-mode .info-section p {
  color: #b0b0b0;
}
body.dark-mode .content-section .section-title,
body.dark-mode .info-section .section-title {
  color: #e4e4e4;
}
body.dark-mode .content-section .section-header,
body.dark-mode .info-section .section-header {
  border-bottom-color: #e3c237;
}
body.dark-mode .info-section {
  background: #2d2d2d;
}
body.dark-mode .info-section .article-item {
  background: #1a1a1a;
}
body.dark-mode .info-section .article-item h4 {
  color: #e4e4e4;
}
body.dark-mode .info-section .article-item p {
  color: #b0b0b0;
}
body.dark-mode .info-section .cta-section {
  background: #1a1a1a;
}
body.dark-mode .info-section .cta-section h3 {
  color: #e4e4e4;
}
body.dark-mode .media-section {
  background: #1a1a1a;
}
body.dark-mode .media-section .section-title {
  color: #e4e4e4;
}
body.dark-mode .media-section .section-description {
  color: #b0b0b0;
}
body.dark-mode .media-section .media-item {
  background: #2d2d2d;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
body.dark-mode .media-section .media-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
body.dark-mode .media-section .see-all-link {
  color: #e4e4e4;
}
body.dark-mode .media-section .see-all-link:hover {
  color: #e3c237;
}
body.dark-mode .book-section {
  background: #2d2d2d;
}
body.dark-mode .book-section .book-info h2 {
  color: #e4e4e4;
}
body.dark-mode .book-section .book-info .book-subtitle {
  color: #e3c237;
}
body.dark-mode .book-section .book-info .book-description {
  color: #b0b0b0;
}
body.dark-mode .timeline-section {
  background: #1a1a1a;
}
body.dark-mode .timeline-section .section-title {
  color: #e4e4e4;
}
body.dark-mode .timeline-section .timeline-item::before {
  border-color: #1a1a1a;
  box-shadow: 0 0 0 4px rgba(227, 194, 55, 0.3);
}
body.dark-mode .timeline-section .timeline-item .timeline-year {
  color: #e3c237;
}
body.dark-mode .timeline-section .timeline-item .timeline-content {
  background: #2d2d2d;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}
body.dark-mode .timeline-section .timeline-item .timeline-content:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
body.dark-mode .timeline-section .timeline-item .timeline-content h3 {
  color: #e4e4e4;
}
body.dark-mode .timeline-section .timeline-item .timeline-content .timeline-category {
  color: #1a1a1a;
}
body.dark-mode .timeline-section .timeline-item .timeline-content p {
  color: #b0b0b0;
}
body.dark-mode footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #e4e4e4;
}
body.dark-mode footer h4 {
  color: #e4e4e4;
}
body.dark-mode footer a {
  color: #b0b0b0;
}
body.dark-mode footer a:hover {
  color: #e3c237;
}
body.dark-mode footer .footer-newsletter {
  background: rgba(255, 255, 255, 0.03);
}
body.dark-mode footer .footer-newsletter h5 {
  color: #e4e4e4;
}
body.dark-mode footer .footer-newsletter p {
  color: #b0b0b0;
}
body.dark-mode footer .footer-newsletter input {
  background: #1a1a1a;
  border-color: #404040;
  color: #e4e4e4;
}
body.dark-mode footer .footer-newsletter input::-moz-placeholder {
  color: #666;
}
body.dark-mode footer .footer-newsletter input::placeholder {
  color: #666;
}
body.dark-mode footer .footer-newsletter input:focus {
  border-color: #e3c237;
}
body.dark-mode footer .footer-bottom {
  border-top-color: #404040;
}
body.dark-mode footer .footer-bottom p {
  color: #b0b0b0;
}
body.dark-mode footer .footer-social a {
  border-color: #404040;
}
body.dark-mode footer .footer-social a:hover {
  border-color: #e3c237;
}
body.dark-mode footer .footer-social a .social-icon {
  fill: #b0b0b0;
}
body.dark-mode .modal {
  background-color: rgba(0, 0, 0, 0.98);
}
body.dark-mode .modal .modal-close,
body.dark-mode .modal .modal-nav {
  background: rgba(255, 255, 255, 0.05);
}
body.dark-mode .modal .modal-close:hover,
body.dark-mode .modal .modal-nav:hover {
  background: rgba(255, 255, 255, 0.1);
}
body.dark-mode input,
body.dark-mode textarea {
  background: #2d2d2d;
  border-color: #404040;
  color: #e4e4e4;
}
body.dark-mode input::-moz-placeholder, body.dark-mode textarea::-moz-placeholder {
  color: #666;
}
body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
  color: #666;
}
body.dark-mode input:focus,
body.dark-mode textarea:focus {
  border-color: #e3c237;
}
body.dark-mode .cta-button.dark {
  background: #e4e4e4;
  color: #1a1a1a;
}
body.dark-mode .cta-button.dark:hover {
  background: white;
}
body.dark-mode .breadcrumbs {
  background: #2d2d2d;
  border-bottom-color: #404040;
}
body.dark-mode .breadcrumbs .breadcrumbs-list li {
  color: #b0b0b0;
}
body.dark-mode .breadcrumbs .breadcrumbs-list li::after {
  color: #666;
}
body.dark-mode .breadcrumbs .breadcrumbs-list li:last-child {
  color: #e4e4e4;
}
body.dark-mode .breadcrumbs .breadcrumbs-list li a {
  color: #b0b0b0;
}
body.dark-mode .breadcrumbs .breadcrumbs-list li a:hover {
  color: #e3c237;
}
body.dark-mode .publications-page {
  background: #1a1a1a;
}
body.dark-mode .publications-page .page-header h1 {
  color: #e4e4e4;
}
body.dark-mode .publications-page .page-header .subtitle {
  color: #b0b0b0;
}
body.dark-mode .publications-page .publication-tabs .publication-tab {
  background: #2d2d2d;
  border-color: #404040;
  color: #e4e4e4;
}
body.dark-mode .publications-page .publication-tabs .publication-tab:hover {
  border-color: #e3c237;
}
body.dark-mode .publications-page .publication-tabs .publication-tab.active {
  background: #e3c237;
  border-color: #e3c237;
  color: #1a1a1a;
}
body.dark-mode .publications-page .publication-card {
  background: #2d2d2d;
}
body.dark-mode .publications-page .publication-card .publication-info h3 {
  color: #e4e4e4;
}
body.dark-mode .publications-page .publication-card .publication-info .publication-meta {
  color: #b0b0b0;
}
body.dark-mode .publications-page .publication-card .publication-info .publication-meta svg {
  stroke: #b0b0b0;
}
body.dark-mode .publications-page .empty-state {
  background: #2d2d2d;
}
body.dark-mode .publications-page .empty-state h3 {
  color: #e4e4e4;
}
body.dark-mode .publications-page .empty-state p {
  color: #b0b0b0;
}
body.dark-mode::-webkit-scrollbar-track {
  background: #2d2d2d;
}
body.dark-mode::-webkit-scrollbar-thumb {
  background: #404040;
}
body.dark-mode::-webkit-scrollbar-thumb:hover {
  background: #4d4d4d;
}
body.dark-mode .awards-page {
  background: #1a1a1a;
}
body.dark-mode .awards-page .page-header {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}
body.dark-mode .awards-page .page-header h1 {
  color: #e4e4e4;
}
body.dark-mode .awards-page .page-header p {
  color: #b0b0b0;
}
body.dark-mode .awards-page .awards-section {
  background: #1a1a1a;
}
body.dark-mode .awards-page .awards-section .section-title {
  color: #e4e4e4;
}
body.dark-mode .awards-page .award-card {
  background: #2d2d2d;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
body.dark-mode .awards-page .award-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
body.dark-mode .awards-page .award-card .award-content h3 {
  color: #e4e4e4;
}
body.dark-mode .awards-page .award-card .award-content p {
  color: #b0b0b0;
}
body.dark-mode .awards-page .award-card .award-content .award-year {
  color: #e3c237;
}
body.dark-mode .awards-page .featured-award {
  background: #2d2d2d;
}
body.dark-mode .awards-page .featured-award .award-info h2 {
  color: #e4e4e4;
}
body.dark-mode .awards-page .featured-award .award-info p {
  color: #b0b0b0;
}
body.dark-mode .awards-page .videos-section {
  background: #2d2d2d;
}
body.dark-mode .awards-page .videos-section .section-title {
  color: #e4e4e4;
}
body.dark-mode .awards-page .videos-section .video-card {
  background: #1a1a1a;
}
body.dark-mode .awards-page .videos-section .video-card .video-info h3 {
  color: #e4e4e4;
}
body.dark-mode .awards-page .videos-section .video-card .video-info p {
  color: #b0b0b0;
}
body.dark-mode .awards-page .filter-buttons button {
  background: #2d2d2d;
  border-color: #404040;
  color: #e4e4e4;
}
body.dark-mode .awards-page .filter-buttons button:hover {
  border-color: #e3c237;
  color: #e3c237;
}
body.dark-mode .awards-page .filter-buttons button.active {
  background: #e3c237;
  border-color: #e3c237;
  color: #1a1a1a;
}
body.dark-mode .news-page {
  background: #1a1a1a;
}
body.dark-mode .news-page .page-header {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}
body.dark-mode .news-page .page-header h1 {
  color: #e4e4e4;
}
body.dark-mode .news-page .page-header p {
  color: #b0b0b0;
}
body.dark-mode .news-page .news-list .news-item {
  background: #2d2d2d;
  border-color: #404040;
}
body.dark-mode .news-page .news-list .news-item:hover {
  border-color: #e3c237;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
body.dark-mode .news-page .news-list .news-item .news-content h2, body.dark-mode .news-page .news-list .news-item .news-content h3 {
  color: #e4e4e4;
}
body.dark-mode .news-page .news-list .news-item .news-content p {
  color: #b0b0b0;
}
body.dark-mode .news-page .news-list .news-item .news-content .news-date {
  color: #b0b0b0;
}
body.dark-mode .news-page .news-list .news-item .news-content .news-excerpt {
  color: #b0b0b0;
}
body.dark-mode .news-page .news-card {
  background: #2d2d2d;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
body.dark-mode .news-page .news-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
body.dark-mode .news-page .news-card .news-card-content h3 {
  color: #e4e4e4;
}
body.dark-mode .news-page .news-card .news-card-content p {
  color: #b0b0b0;
}
body.dark-mode .news-page .news-card .news-card-content .news-meta {
  color: #b0b0b0;
}
body.dark-mode .news-page .pagination a, body.dark-mode .news-page .pagination span {
  background: #2d2d2d;
  border-color: #404040;
  color: #e4e4e4;
}
body.dark-mode .news-page .pagination a:hover, body.dark-mode .news-page .pagination span:hover {
  border-color: #e3c237;
  color: #e3c237;
}
body.dark-mode .news-page .pagination a.active, body.dark-mode .news-page .pagination span.active {
  background: #e3c237;
  border-color: #e3c237;
  color: #1a1a1a;
}
body.dark-mode .news-page .pagination a.disabled, body.dark-mode .news-page .pagination span.disabled {
  color: #666;
  cursor: not-allowed;
}
body.dark-mode .news-detail {
  background: #1a1a1a;
}
body.dark-mode .news-detail .news-header h1 {
  color: #e4e4e4;
}
body.dark-mode .news-detail .news-header .news-meta {
  color: #b0b0b0;
}
body.dark-mode .news-detail .news-content {
  color: #b0b0b0;
}
body.dark-mode .news-detail .news-content h2, body.dark-mode .news-detail .news-content h3, body.dark-mode .news-detail .news-content h4 {
  color: #e4e4e4;
}
body.dark-mode .news-detail .news-content p {
  color: #b0b0b0;
}
body.dark-mode .news-detail .news-content blockquote {
  background: #2d2d2d;
  border-left-color: #e3c237;
  color: #e4e4e4;
}
body.dark-mode .news-detail .news-sidebar .sidebar-section {
  background: #2d2d2d;
}
body.dark-mode .news-detail .news-sidebar .sidebar-section h3 {
  color: #e4e4e4;
}
body.dark-mode .news-detail .news-sidebar .sidebar-section a {
  color: #b0b0b0;
}
body.dark-mode .news-detail .news-sidebar .sidebar-section a:hover {
  color: #e3c237;
}
body.dark-mode .media-page {
  background: #1a1a1a;
}
body.dark-mode .media-page .page-header {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}
body.dark-mode .media-page .page-header h1 {
  color: #e4e4e4;
}
body.dark-mode .media-page .page-header p {
  color: #b0b0b0;
}
body.dark-mode .media-page .filters-section {
  background: #2d2d2d;
  border-bottom-color: #404040;
}
body.dark-mode .media-page .filters-section .filter-group label {
  color: #b0b0b0;
}
body.dark-mode .media-page .filters-section .filter-buttons button {
  background: #1a1a1a;
  border-color: #404040;
  color: #e4e4e4;
}
body.dark-mode .media-page .filters-section .filter-buttons button:hover {
  border-color: #e3c237;
  color: #e3c237;
}
body.dark-mode .media-page .filters-section .filter-buttons button.active {
  background: #e3c237;
  border-color: #e3c237;
  color: #1a1a1a;
}
body.dark-mode .media-page .filters-section .results-count {
  color: #b0b0b0;
}
body.dark-mode .media-page .filters-section .results-count strong {
  color: #e3c237;
}
body.dark-mode .media-page .media-gallery .media-item {
  background: #2d2d2d;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
body.dark-mode .media-page .media-gallery .media-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
body.dark-mode .media-page .media-gallery .media-item .media-overlay {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}
body.dark-mode .media-page .media-gallery .media-item .media-overlay .media-title {
  color: white;
}
body.dark-mode .media-page .video-section {
  background: #2d2d2d;
}
body.dark-mode .media-page .video-section .section-title {
  color: #e4e4e4;
}
body.dark-mode .media-page .video-section .video-card {
  background: #1a1a1a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
body.dark-mode .media-page .video-section .video-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
body.dark-mode .media-page .video-section .video-card .video-content h3 {
  color: #e4e4e4;
}
body.dark-mode .media-page .video-section .video-card .video-content p {
  color: #b0b0b0;
}
body.dark-mode .media-page .video-section .video-card .video-content .video-meta {
  color: #b0b0b0;
}
body.dark-mode .media-page .pagination a, body.dark-mode .media-page .pagination span {
  background: #2d2d2d;
  border-color: #404040;
  color: #e4e4e4;
}
body.dark-mode .media-page .pagination a:hover, body.dark-mode .media-page .pagination span:hover {
  border-color: #e3c237;
  color: #e3c237;
}
body.dark-mode .media-page .pagination a.active, body.dark-mode .media-page .pagination span.active {
  background: #e3c237;
  border-color: #e3c237;
  color: #1a1a1a;
}
body.dark-mode .media-page .pagination a.disabled, body.dark-mode .media-page .pagination span.disabled {
  color: #666;
}
body.dark-mode .books-page {
  background: #1a1a1a;
}
body.dark-mode .books-page .book-details-section {
  background: #1a1a1a;
}
body.dark-mode .books-page .book-details-section .section-title {
  color: #e4e4e4;
}
body.dark-mode .books-page .book-details-section .description-box p {
  color: #b0b0b0;
}
body.dark-mode .books-page .book-details-section .description-box .highlight-quote {
  background: #2d2d2d;
  border-left-color: #e3c237;
  color: #e4e4e4;
}
body.dark-mode .books-page .book-details-section .book-specifications-section h3 {
  color: #e4e4e4;
}
body.dark-mode .books-page .book-details-section .book-specifications-section .spec-card {
  background: #2d2d2d;
  border-color: #404040;
}
body.dark-mode .books-page .book-details-section .book-specifications-section .spec-card .spec-icon {
  color: #e3c237;
}
body.dark-mode .books-page .book-details-section .book-specifications-section .spec-card .spec-icon svg {
  stroke: #e3c237;
}
body.dark-mode .books-page .book-details-section .book-specifications-section .spec-card .spec-label {
  color: #b0b0b0;
}
body.dark-mode .books-page .book-details-section .book-specifications-section .spec-card .spec-value {
  color: #e4e4e4;
}
body.dark-mode .books-page .book-details-section .supply-points-section h3 {
  color: #e4e4e4;
}
body.dark-mode .books-page .book-details-section .supply-points-section .supply-points-box {
  background: #2d2d2d;
  border-color: #404040;
}
body.dark-mode .books-page .book-details-section .supply-points-section .supply-points-box li {
  color: #e4e4e4;
  border-bottom-color: #404040;
}
body.dark-mode .books-page .book-details-section .supply-points-section .supply-points-box li svg {
  stroke: #e3c237;
}
body.dark-mode .books-page .book-details-section .supply-points-section .supply-points-box li a {
  color: #e4e4e4;
}
body.dark-mode .books-page .book-details-section .supply-points-section .supply-points-box li a:hover {
  color: #e3c237;
}
body.dark-mode .books-page .book-details-section .features-grid .feature-card {
  background: #2d2d2d;
}
body.dark-mode .books-page .book-details-section .features-grid .feature-card h4 {
  color: #e4e4e4;
}
body.dark-mode .books-page .book-details-section .features-grid .feature-card p {
  color: #b0b0b0;
}
body.dark-mode .faq-page {
  background: #1a1a1a;
}
body.dark-mode .faq-page .page-header {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}
body.dark-mode .faq-page .page-header h1 {
  color: #e4e4e4;
}
body.dark-mode .faq-page .page-header p {
  color: #b0b0b0;
}
body.dark-mode .faq-page .faq-section {
  background: #1a1a1a;
}
body.dark-mode .faq-page .faq-section .section-title {
  color: #e4e4e4;
}
body.dark-mode .faq-page .faq-item {
  background: #2d2d2d;
  border-color: #404040;
}
body.dark-mode .faq-page .faq-item:hover {
  border-color: #595959;
}
body.dark-mode .faq-page .faq-item .faq-question {
  color: #e4e4e4;
}
body.dark-mode .faq-page .faq-item .faq-question::after {
  color: #e3c237;
}
body.dark-mode .faq-page .faq-item .faq-answer {
  color: #b0b0b0;
  border-top-color: #404040;
}
body.dark-mode .faq-page .faq-item .faq-answer p {
  color: #b0b0b0;
}
body.dark-mode .faq-page .faq-item.active {
  border-color: #e3c237;
}
body.dark-mode .faq-page .faq-item.active .faq-question {
  color: #e3c237;
}
body.dark-mode .faq-page .faq-cta {
  background: #2d2d2d;
}
body.dark-mode .faq-page .faq-cta h3 {
  color: #e4e4e4;
}
body.dark-mode .faq-page .faq-cta p {
  color: #b0b0b0;
}
body.dark-mode .about-page {
  background: #1a1a1a;
}
body.dark-mode .about-page .page-header {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}
body.dark-mode .about-page .page-header h1 {
  color: #e4e4e4;
}
body.dark-mode .about-page .page-header p {
  color: #b0b0b0;
}
body.dark-mode .about-page .about-section {
  background: #1a1a1a;
}
body.dark-mode .about-page .about-section h2 {
  color: #e4e4e4;
}
body.dark-mode .about-page .about-section p {
  color: #b0b0b0;
}
body.dark-mode .about-page .about-cta-section {
  background: #2d2d2d;
}
body.dark-mode .about-page .about-cta-section h2 {
  color: #e4e4e4;
}
body.dark-mode .about-page .about-cta-section p {
  color: #b0b0b0;
}
body.dark-mode .about-page .text-content h2, body.dark-mode .about-page .text-content h3 {
  color: #e4e4e4;
}
body.dark-mode .about-page .text-content p {
  color: #b0b0b0;
}
body.dark-mode .publication-viewer {
  background: #1a1a1a;
}
body.dark-mode .publication-viewer .viewer-header {
  background: #2d2d2d;
  border-bottom-color: #404040;
}
body.dark-mode .publication-viewer .viewer-header .viewer-title h1 {
  color: #e4e4e4;
}
body.dark-mode .publication-viewer .viewer-header .viewer-title .back-button {
  color: #b0b0b0;
}
body.dark-mode .publication-viewer .viewer-header .viewer-title .back-button:hover {
  color: #e3c237;
}
body.dark-mode .publication-viewer .viewer-header .viewer-meta {
  color: #b0b0b0;
}
body.dark-mode .publication-viewer .page-counter {
  background: #2d2d2d;
  color: #e4e4e4;
}
body.dark-mode .publication-viewer .zoom-controls {
  background: #2d2d2d;
}
body.dark-mode .publication-viewer .zoom-controls .zoom-btn {
  background: #1a1a1a;
  border-color: #404040;
  color: #e4e4e4;
}
body.dark-mode .publication-viewer .zoom-controls .zoom-btn:hover {
  border-color: #e3c237;
  color: #e3c237;
}
body.dark-mode .publication-viewer .zoom-controls #zoom-level {
  color: #e4e4e4;
}
body.dark-mode .publication-viewer .viewer-controls .control-btn {
  background: #2d2d2d;
  border-color: #404040;
  color: #e4e4e4;
}
body.dark-mode .publication-viewer .viewer-controls .control-btn:hover:not(:disabled) {
  border-color: #e3c237;
  color: #e3c237;
}
body.dark-mode .publication-viewer .viewer-controls .control-btn:disabled {
  color: #666;
  cursor: not-allowed;
}
body.dark-mode .publication-viewer .viewer-footer {
  background: #2d2d2d;
  border-top-color: #404040;
}
body.dark-mode .publication-viewer .viewer-footer p {
  color: #b0b0b0;
}
body.dark-mode .publication-viewer .unified-viewer-container {
  background: #1a1a1a;
}
body.dark-mode .legal-page {
  background: #1a1a1a;
}
body.dark-mode .legal-page .page-header {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}
body.dark-mode .legal-page .page-header h1 {
  color: #e4e4e4;
}
body.dark-mode .legal-page .page-header p {
  color: #b0b0b0;
}
body.dark-mode .legal-page .legal-content {
  background: #1a1a1a;
}
body.dark-mode .legal-page .legal-content h2, body.dark-mode .legal-page .legal-content h3, body.dark-mode .legal-page .legal-content h4 {
  color: #e4e4e4;
}
body.dark-mode .legal-page .legal-content p, body.dark-mode .legal-page .legal-content li {
  color: #b0b0b0;
}
body.dark-mode .legal-page .legal-content ul, body.dark-mode .legal-page .legal-content ol {
  color: #b0b0b0;
}
body.dark-mode .legal-page .legal-content a {
  color: #e3c237;
}
body.dark-mode .legal-page .legal-content a:hover {
  color: #ebd066;
}
body.dark-mode .legal-page .legal-content .legal-section {
  background: #2d2d2d;
  border-color: #404040;
}
body.dark-mode .legal-page .legal-content blockquote {
  background: #2d2d2d;
  border-left-color: #e3c237;
  color: #e4e4e4;
}
body.dark-mode .legal-page .legal-content table {
  background: #2d2d2d;
  border-color: #404040;
}
body.dark-mode .legal-page .legal-content table th {
  background: #1a1a1a;
  color: #e4e4e4;
}
body.dark-mode .legal-page .legal-content table td {
  color: #b0b0b0;
  border-color: #404040;
}
body.dark-mode .contact-page {
  background: #1a1a1a;
}
body.dark-mode .contact-page .page-header {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}
body.dark-mode .contact-page .page-header h1 {
  color: #e4e4e4;
}
body.dark-mode .contact-page .page-header p {
  color: #b0b0b0;
}
body.dark-mode .contact-page .contact-section {
  background: #1a1a1a;
}
body.dark-mode .contact-page .contact-section .contact-info h3 {
  color: #e4e4e4;
}
body.dark-mode .contact-page .contact-section .contact-info p {
  color: #b0b0b0;
}
body.dark-mode .contact-page .contact-section .contact-info .contact-item {
  color: #b0b0b0;
}
body.dark-mode .contact-page .contact-section .contact-info .contact-item svg {
  stroke: #e3c237;
}
body.dark-mode .contact-page .contact-section .contact-info .contact-item a {
  color: #e4e4e4;
}
body.dark-mode .contact-page .contact-section .contact-info .contact-item a:hover {
  color: #e3c237;
}
body.dark-mode .contact-page .contact-section .contact-form {
  background: #2d2d2d;
}
body.dark-mode .contact-page .contact-section .contact-form h3 {
  color: #e4e4e4;
}
body.dark-mode .contact-page .contact-section .contact-form label {
  color: #b0b0b0;
}
body.dark-mode .contact-page .contact-section .contact-form input, body.dark-mode .contact-page .contact-section .contact-form textarea, body.dark-mode .contact-page .contact-section .contact-form select {
  background: #1a1a1a;
  border-color: #404040;
  color: #e4e4e4;
}
body.dark-mode .contact-page .contact-section .contact-form input::-moz-placeholder, body.dark-mode .contact-page .contact-section .contact-form textarea::-moz-placeholder, body.dark-mode .contact-page .contact-section .contact-form select::-moz-placeholder {
  color: #666;
}
body.dark-mode .contact-page .contact-section .contact-form input::placeholder, body.dark-mode .contact-page .contact-section .contact-form textarea::placeholder, body.dark-mode .contact-page .contact-section .contact-form select::placeholder {
  color: #666;
}
body.dark-mode .contact-page .contact-section .contact-form input:focus, body.dark-mode .contact-page .contact-section .contact-form textarea:focus, body.dark-mode .contact-page .contact-section .contact-form select:focus {
  border-color: #e3c237;
}
body.dark-mode .information-section {
  background: #1a1a1a;
}
body.dark-mode .information-section .section-header {
  border-bottom-color: #e3c237;
}
body.dark-mode .information-section .section-title {
  color: #e4e4e4;
}
body.dark-mode .information-section .articles-column .article-item {
  background: #2d2d2d;
}
body.dark-mode .information-section .articles-column .article-item h3 {
  color: #e4e4e4;
}
body.dark-mode .information-section .articles-column .article-item p {
  color: #b0b0b0;
}
body.dark-mode .information-section .articles-column .article-item-link:hover .article-item {
  border-color: #404040;
}
body.dark-mode .information-section .articles-column .article-item-link:hover .article-content h3 {
  color: #b0b0b0;
}
body.dark-mode .information-section .news-column .news-item {
  border-bottom-color: #404040;
}
body.dark-mode .information-section .news-column .news-item .news-date {
  color: #b0b0b0;
}
body.dark-mode .information-section .news-column .news-item h4 {
  color: #e4e4e4;
}
body.dark-mode .information-section .news-column .news-item h4:hover {
  color: #e3c237;
}
body.dark-mode .information-section .see-all-link {
  color: #e4e4e4;
}
body.dark-mode .information-section .see-all-link:hover {
  color: #e3c237;
}
body.dark-mode select {
  background: #2d2d2d;
  border-color: #404040;
  color: #e4e4e4;
}
body.dark-mode select:focus {
  border-color: #e3c237;
}
body.dark-mode select option {
  background: #2d2d2d;
  color: #e4e4e4;
}

@media (max-width: 1024px) {
  .top-bar {
    display: none;
  }
  .main-nav {
    min-height: 80px;
    padding: 20px;
    justify-content: center;
  }
  .main-nav .mobile-menu-toggle {
    display: flex;
  }
  .main-nav .logo {
    position: static;
    transform: none;
    margin: 0;
  }
  .main-nav .logo img {
    height: 80px;
  }
  .main-nav .nav-menu.left,
  .main-nav .nav-menu.right {
    display: none;
  }
  .main-nav .nav-menu.mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 100px 40px 40px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  .main-nav .nav-menu.mobile-menu.active {
    right: 0;
  }
  .main-nav .nav-menu.mobile-menu .mobile-top-bar {
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 15px;
    margin-bottom: 10px;
  }
  .main-nav .nav-menu.mobile-menu .mobile-top-bar .mobile-top-bar-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
  }
  .main-nav .nav-menu.mobile-menu .mobile-top-bar .mobile-top-bar-content .contact-info {
    font-size: 14px;
    color: #666;
    text-align: center;
  }
  .main-nav .nav-menu.mobile-menu .mobile-top-bar .mobile-top-bar-content .top-bar-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .main-nav .nav-menu.mobile-menu .mobile-top-bar .mobile-top-bar-content .top-bar-controls .lang-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .main-nav .nav-menu.mobile-menu li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
  .main-nav .nav-menu.mobile-menu li a {
    display: block;
    padding: 18px 0;
    font-size: 17px;
  }
  .main-nav .nav-menu.mobile-menu li a::after {
    display: none;
  }
  .main-nav::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
  }
  .main-nav.menu-open::before {
    opacity: 1;
    visibility: visible;
  }
  .hero {
    height: auto;
    min-height: 550px;
  }
  .hero-slider {
    padding: 0 30px;
  }
  .hero-slider .slide-content {
    flex-direction: column;
    text-align: center;
    padding: 60px 0 40px;
    gap: 30px;
  }
  .hero-slider .badge {
    width: 70px;
    height: 70px;
    top: 30px;
    left: 30px;
  }
  .hero-slider .quote-section {
    max-width: 100%;
    padding: 0;
    order: 2;
  }
  .hero-slider .quote-section .quote-small {
    font-size: 18px;
  }
  .hero-slider .quote-section .quote {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 25px;
  }
  .hero-slider .quote-section .cta-buttons {
    justify-content: center;
  }
  .hero-slider .quote-section .cta-button {
    padding: 13px 35px;
    font-size: 15px;
  }
  .hero-slider .author-image {
    position: relative;
    right: auto;
    bottom: auto;
    height: auto;
    order: 1;
    margin: 0 auto;
    max-width: 350px;
  }
  .hero-slider .author-image > img {
    width: 100%;
    height: auto;
    max-height: 400px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .hero-slider .author-image .book-showcase {
    display: none;
  }
  .hero-slider .slider-controls button {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
  .hero-slider .slider-dots {
    bottom: 25px;
  }
  .hero-slider .slider-dots .dot {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 768px) {
  .top-bar {
    padding: 10px 20px;
    flex-direction: column;
    gap: 10px;
  }
  .main-nav .logo img {
    height: 60px;
  }
  .main-nav .nav-menu.mobile-menu {
    width: 280px;
    padding: 80px 30px 30px;
  }
  .main-nav .nav-menu.mobile-menu li a {
    padding: 15px 0;
    font-size: 16px;
    text-align: center;
  }
  .hero {
    height: auto;
    min-height: 450px;
    padding: 20px 0;
  }
  .hero-slider {
    padding: 0 15px;
    height: 100%;
  }
  .hero-slider .slide {
    height: 100%;
  }
  .hero-slider .slide.active {
    display: flex;
    flex-direction: column;
  }
  .hero-slider .badge {
    width: 50px;
    height: 50px;
    top: 15px;
    left: 15px;
  }
  .hero-slider .slide-content {
    flex-direction: column;
    padding: 70px 0 60px;
    text-align: center;
    justify-content: center;
    gap: 25px;
  }
  .hero-slider .quote-section {
    padding: 0;
    max-width: 100%;
    order: 2;
    margin: 0;
  }
  .hero-slider .quote-section .quote-small {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .hero-slider .quote-section .quote {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: 0;
  }
  .hero-slider .quote-section .cta-buttons {
    justify-content: center;
    gap: 10px;
  }
  .hero-slider .quote-section .cta-button {
    padding: 10px 24px;
    font-size: 13px;
    white-space: nowrap;
  }
  .hero-slider .author-image {
    position: relative;
    right: auto;
    bottom: auto;
    height: auto;
    order: 1;
    margin: 0 auto;
    max-width: 250px;
    width: 100%;
  }
  .hero-slider .author-image > img {
    width: 100%;
    height: auto;
    max-height: 300px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .hero-slider .author-image .book-showcase {
    display: none;
  }
  .hero-slider .slider-controls {
    padding: 0 5px;
    z-index: 10;
  }
  .hero-slider .slider-controls button {
    width: 36px;
    height: 36px;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.95);
  }
  .hero-slider .slider-controls button:active {
    transform: scale(0.95);
  }
  .hero-slider .slider-dots {
    bottom: 15px;
    z-index: 10;
  }
  .hero-slider .slider-dots .dot {
    width: 8px;
    height: 8px;
    border-width: 1.5px;
  }
  .content-section .two-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .video-section .video-container {
    padding: 60px 20px;
  }
  .video-section .video-container .play-button {
    position: static;
    transform: none;
    margin-top: 20px;
  }
  .information-section .info-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .information-section .section-title {
    font-size: 24px;
  }
  .information-section .articles-column .article-item {
    flex-direction: column;
  }
  .information-section .articles-column .article-item .article-thumb {
    width: 100%;
    height: 200px;
  }
  .information-section .news-column {
    margin-top: 20px;
  }
  .cta-section .cta-container {
    grid-template-columns: 1fr;
  }
  .cta-section .cta-content {
    padding: 40px 20px;
  }
  .book-section {
    padding: 30px 0 40px;
  }
  .book-section .book-slider-container {
    padding: 0 20px;
  }
  .book-section .book-container {
    grid-template-columns: 1fr;
    gap: 30px;
    height: auto;
    padding: 20px;
  }
  .book-section .book-image {
    height: auto;
    justify-content: center;
  }
  .book-section .book-image img {
    height: 200px;
  }
  .book-section .book-info {
    flex-direction: column;
    height: auto;
    text-align: center;
  }
  .book-section .book-info .book-details {
    align-items: center;
  }
  .book-section .book-info .book-details h2 {
    font-size: 24px;
  }
  .book-section .book-info .book-details .book-subtitle {
    font-size: 12px;
  }
  .book-section .book-info .book-details .book-description {
    font-size: 13px;
    max-width: 100%;
  }
  .book-section .book-info .purchase-section {
    margin-top: 20px;
  }
  .book-section .book-info .purchase-section .cta-button {
    padding: 12px 25px;
    font-size: 12px;
  }
  .book-section .book-slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .book-section .book-slider-arrow.book-slider-prev {
    left: 10px;
  }
  .book-section .book-slider-arrow.book-slider-next {
    right: 10px;
  }
}
@media (max-width: 900px) {
  footer .footer-newsletter {
    padding: 0;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 10px !important;
    padding-top: 30px !important;
  }
  footer .footer-container {
    padding: 0;
    margin-bottom: 10px !important;
  }
  footer .empty-item {
    display: none;
  }
  footer .footer-top {
    flex-direction: column;
    gap: 40px;
    grid-template-columns: 1fr !important;
  }
  footer .footer-main-nav .footer-nav {
    text-align: center;
  }
  footer .footer-main-nav .footer-nav a {
    padding: 12px 0;
    font-size: 16px;
  }
  footer .footer-main-nav .footer-menu-grid {
    display: flex;
    flex-direction: column !important;
    grid-template-columns: none !important;
    grid-template-rows: none !important;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
  }
  footer .footer-legal .footer-nav {
    text-align: center;
  }
  footer .footer-legal .footer-nav ul {
    gap: 15px;
  }
  footer .footer-legal .footer-nav a {
    padding: 12px 0;
    font-size: 16px;
  }
  footer .footer-newsletter {
    margin-bottom: 10px !important;
  }
  footer .footer-newsletter .newsletter-wrapper {
    flex-direction: column;
    padding: 30px 20px;
  }
  footer .footer-newsletter .newsletter-wrapper .newsletter-left {
    margin-bottom: 20px;
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  footer .footer-newsletter .newsletter-wrapper .newsletter-right {
    width: 100%;
  }
  footer .footer-newsletter .newsletter-wrapper .newsletter-right .form-group {
    flex-direction: column;
  }
  footer .footer-newsletter .newsletter-wrapper .newsletter-right .form-group input {
    width: 100%;
    margin-bottom: 10px;
  }
  footer .footer-newsletter .newsletter-wrapper .newsletter-right .form-group button {
    width: 100%;
  }
  footer .footer-newsletter .newsletter-wrapper .newsletter-right .checkbox-wrapper .agreement-text {
    font-size: 14px;
    line-height: 1.5;
  }
  footer .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  footer .footer-bottom .footer-bottom-left {
    align-items: center;
    flex-direction: column;
  }
  footer .footer-bottom .footer-social a {
    width: 44px;
    height: 44px;
  }
}
@media (max-width: 480px) {
  .hero {
    min-height: 400px;
    padding: 15px 0;
  }
  .hero-slider {
    padding: 0 10px;
  }
  .hero-slider .badge {
    width: 45px;
    height: 45px;
    top: 10px;
    left: 10px;
  }
  .hero-slider .slide-content {
    padding: 60px 0 50px;
    gap: 20px;
  }
  .hero-slider .quote-section .quote-small {
    font-size: 12px;
    margin-bottom: 4px;
  }
  .hero-slider .quote-section .quote {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  .hero-slider .quote-section .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .hero-slider .quote-section .cta-button {
    width: 100%;
    padding: 11px 20px;
    font-size: 13px;
  }
  .hero-slider .author-image {
    max-width: 200px;
  }
  .hero-slider .author-image > img {
    max-height: 250px;
  }
  .hero-slider .slider-controls button {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  .hero-slider .slider-dots {
    bottom: 10px;
    gap: 8px;
  }
  .hero-slider .slider-dots .dot {
    width: 7px;
    height: 7px;
    border-width: 1.5px;
  }
  footer .footer-container {
    padding: 30px 15px;
  }
  footer .footer-top {
    gap: 30px;
  }
  footer .footer-newsletter .newsletter-wrapper {
    padding: 20px 15px;
  }
  footer .footer-bottom .footer-logo img {
    height: 32px;
  }
  .book-section .book-slider-arrow {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .book-section .book-info .book-details h2 {
    font-size: 20px;
  }
  .information-section {
    padding: 40px 0;
  }
  .information-section .section-title {
    font-size: 20px;
  }
  .information-section .article-item {
    padding: 15px;
  }
  .information-section .article-item .article-thumb {
    height: 150px;
  }
}/*# sourceMappingURL=main.css.map */