/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

/* Header */
.header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1000;
  padding: 18px 0;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px 0 100px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.header-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.canon-logo {
  height: 26px;
  width: auto;
}

.global-text {
  color: #999;
  font-size: 16px;
  font-weight: 400;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav a {
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  transition: color 0.3s;
  display: inline-block;
}

.nav a:hover {
  color: #c8102e;
}

/* Header Right Utilities */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 0;
  margin-top: -5px;
  margin-right: 75px;
}

.lang-box {
  font-family: "Roboto", sans-serif;
  line-height: 1em;
  font-weight: 100;
  border: 1px solid #d0d0d0;
  padding: 15px 16px;
  text-decoration: none;
  color: #333;
  font-size: 12px;
  transition: all 0.3s;
}

.lang-box:hover {
  border-color: #c8102e;
  color: #c8102e;
}

.utility-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.utility-link {
  text-decoration: none;
  color: #333;
  font-size: 11px;
  transition: color 0.3s;
  display: block;
  text-align: center;
}

.utility-link:hover {
  color: #c8102e;
}

.globe-icon-header {
  width: 24px;
  height: 24px;
  display: block;
  cursor: pointer;
  transition: opacity 0.3s;
}

.globe-icon-header:hover {
  opacity: 0.7;
}

.search-icon-btn {
  width: 31px;
  height: 31px;
  background: none;
  border: none;
  cursor: pointer;
  padding-top: 1px;
  display: block;
  transition: opacity 0.3s;
}

.search-icon-btn:hover {
  opacity: 0.7;
}

/* Hero Slider */
.hero-slider-wrapper {
  width: 1686px;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: 700px;
  width: 100%;
  overflow: hidden;
}

.hero-progress-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 37px 0 34px 0;
  width: 100%;
  margin-left: 420px;
  box-sizing: border-box;
  overflow: hidden;
}

.hero-progress-bar {
  width: 508px;
  height: 4px;
  background-color: #d0d0d0;
  position: relative;
  overflow: hidden;
}

.hero-progress-bar.completed {
  background-color: #c8102e;
}

.hero-progress-bar.completed::after {
  display: none;
}

.hero-progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #c8102e;
}

.hero-progress-bar.active::after {
  animation: progressAnimation 4s linear forwards;
  animation-play-state: running;
}

.hero-progress-bar.paused::after {
  animation-play-state: paused;
}

@keyframes progressAnimation {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
  display: block;
  opacity: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-white-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 420px;
  height: 57px;
  background-color: #fff;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 15px;
  padding-right: 15px;
  gap: 48px;
  box-sizing: border-box;
  overflow: hidden;
}

.hero-nav-btn {
  position: relative;
  top: initial;
  left: initial;
  right: initial;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin: initial;
  padding: 0;
  border: 0;
  background-color: #be000b;
  appearance: none;
  color: #fff;
  font-size: 0;
  cursor: pointer;
  transition: opacity 0.3s;
  box-sizing: border-box;
}

.hero-nav-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%);
}

.hero-prev-btn::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.hero-next-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.hero-nav-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-nav-btn:hover {
  opacity: 0.8;
}

.hero-play-pause-btn {
  position: relative;
  top: initial;
  left: initial;
  right: initial;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin: initial;
  padding: 0;
  border: 0;
  background-color: #be000b;
  appearance: none;
  color: #fff;
  font-size: 0;
  cursor: pointer;
  transition: opacity 0.3s;
  box-sizing: border-box;
}

.hero-play-pause-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  transition: opacity 0.2s ease;
}

.hero-play-pause-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  transition: opacity 0.2s ease;
}

/* Play icon (when paused) */
.hero-play-pause-btn.paused::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
  transform: translate(-30%, -50%);
  margin-left: 1px;
  opacity: 1;
}

.hero-play-pause-btn.paused::after {
  display: none !important;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Pause icon (when playing) - two vertical lines "| |" */
.hero-play-pause-btn.playing::before {
  width: 3px;
  height: 12px;
  background-color: #fff;
  transform: translate(-75%, -50%);
  opacity: 1;
  border: none;
  margin: 0;
  border-radius: 0;
  left: 50%;
}

.hero-play-pause-btn.playing::after {
  content: "" !important;
  display: block !important;
  width: 3px;
  height: 12px;
  background-color: #fff;
  transform: translate(-25%, -50%);
  opacity: 1;
  margin: 0;
  border-radius: 0;
  left: 50%;
}

.hero-play-pause-btn:hover {
  opacity: 0.8;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.btn-learn {
  display: inline-block;
  padding: 12px 40px;
  background-color: transparent;
  color: white;
  text-decoration: none;
  border: 2px solid white;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.btn-learn:hover {
  background-color: white;
  color: #333;
}

/* News Section */
.news-section {
  padding: 50px 20px 80px 20px;
  background-color: #f5f5f5;
}

.news-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* News Sidebar */
.news-sidebar {
  min-width: 180px;
  background-color: #f5f5f5;
  padding: 0 20px 20px 20px;
  border-radius: 4px;
}

.news-sidebar h2 {
  font-family: "Roboto", sans-serif;
  font-size: 47px;
  font-weight: 700;
  line-height: 1.25em;
  letter-spacing: 0.06em;
  color: #333;
  margin-bottom: 25px;
  margin-left: -25px;
  position: relative;
  padding-bottom: 15px;
}

.news-sidebar h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #c8102e;
}

.view-index-link {
  font-family: "Roboto", sans-serif;
  color: #be000b;
  text-decoration: none;
  font-size: 1.1rem;
  line-height: 1em;
  letter-spacing: 0.06em;
  display: inline-block;
  margin-top: 30px;
  margin-left: -25px;
  position: relative;
  transition: color 0.3s;
}

.view-index-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #be000b;
  transition: width 0.3s ease;
}

.view-index-link:hover::after {
  width: 100%;
}

/* News Cards */
.news-cards {
  display: grid;
  grid-template-columns: repeat(3, 270px);
  gap: 30px;
  flex: 1;
  margin-right: -20px;
  margin-left: 60px;
}

.news-card {
  background: white;
  border: 1px solid transparent;
  transition: border-color 0.3s;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  width: 270px;
  height: 357px;
}

.news-card:hover {
  border-color: #c8102e;
}

.news-card-image {
  width: 100%;
  height: 184px;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.placeholder-news-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  color: white;
}

.news-img-1 {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  position: relative;
}

.news-img-1::before {
  content: "📊";
  font-size: 60px;
}

.news-img-2 {
  background: #fff;
  color: #000;
  border: 1px solid #e0e0e0;
  position: relative;
}

.news-img-2::before {
  content: "170 million\A RF/EF";
  white-space: pre;
  text-align: center;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}

.news-img-3 {
  background: #f8f8f8;
}

.news-card-content {
  padding: 20px;
  position: relative;
}

.news-date {
  color: #000;
  font-size: 0.9375rem;
  line-height: 1em;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 12px;
}

.news-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: initial;
  font-size: 1rem;
  line-height: 1.6470588235em;
  letter-spacing: 0.06em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  color: #000;
  font-weight: 600;
  margin-bottom: 15px;
}

.news-card p {
  color: #666;
  font-size: 13px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.news-tag {
  position: absolute;
  right: 1.1333333333em;
  bottom: 1.1333333333em;
  margin: initial;
  margin-top: 0.2666666667em;
  margin-left: auto;
  padding-top: 8px;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  text-align: right;
  color: #000;
  font-weight: 600;
}

/* Image Gallery Section */
.image-gallery-section {
  padding: 0;
  background-color: #fff;
}

.image-gallery-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.gallery-image {
  width: 100%;
  height: 541px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.gallery-caption {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 692px;
  width: 100%;
  min-height: 374px;
  background-color: #fff;
  padding: 44px 50px 30px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 3;
  box-sizing: border-box;
}

.gallery-caption-title {
  padding-bottom: 0.5em;
  font-family: "Roboto", sans-serif;
  font-size: 2.9875rem;
  font-weight: 700;
  line-height: 1.25em;
  letter-spacing: 0.06em;
  color: #333;
  margin-bottom: 30px;
  position: relative;
  width: 70%;
  max-width: 65%;
  margin-left: 28%;
  text-align: left;
}

.gallery-caption-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #c8102e;
}

.gallery-caption-lead {
  font-family: "Roboto", sans-serif;
  font-size: 1.1875rem;
  line-height: 1.8947368421;
  letter-spacing: 0.06em;
  color: #333;
  margin-bottom: 35px;
  width: 85%;
  max-width: 85%;
  margin-left: 28%;
  text-align: left;
}

.gallery-caption-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: "Roboto", sans-serif;
  font-size: 1.0625rem;
  font-weight: 450;
  color: #c8102e;
  margin: 0;
  margin-left: 28%;
  text-align: left;
  position: relative;
  padding-bottom: 2px;
  cursor: pointer;
}

.gallery-caption-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #c8102e;
  transition: width 0.3s ease;
}

.gallery-caption-link:hover::after {
  width: 100%;
}

.gallery-caption-link .arrow-link {
  font-size: 18px;
  margin-left: 8px;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #be000a;
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.gallery-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  display: flex;
  gap: 15px;
  padding: 40px 250px 40px 0;
  align-items: center;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  pointer-events: none;
  z-index: 2;
}

.gallery-image:not(:first-child) .gallery-menu {
  padding: 40px 500px 40px 0;
}

.gallery-image:hover .gallery-overlay {
  transform: translateX(0);
}

.gallery-image:hover .gallery-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-image:hover img {
  opacity: 0;
}

.menu-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: flex-start;
}

.menu-column a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  width: auto;
  padding: 0 0 2px 0;
  position: relative;
  transition: opacity 0.2s ease;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.5;
}

.menu-column a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.menu-column a:hover {
  opacity: 1;
}

.menu-column a:hover::after {
  width: 100%;
}

.menu-column a .arrow {
  font-size: 14px;
  font-weight: 300;
  margin-left: 4px;
}

/* More Contents Slider Section */
.more-contents-slider {
  padding: 80px 20px;
  background-color: #fff;
}

.slider-header h2 {
  font-size: 2.1875rem;
  margin-bottom: 10px;
  color: #333;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.slider-header h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #c8102e;
}

.slider-header {
  margin-bottom: 40px;
}

.slider-container {
  overflow: hidden;
  margin-bottom: 30px;
}

.slider-wrapper {
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  gap: 20px;
}

.slider-card {
  width: 386px;
  background: white;
  border-radius: 5px;
  overflow: visible;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-sizing: border-box;
  padding: 0;
}

.slider-card:hover {
  text-decoration: none;
}

.slider-card-image {
  width: 386px;
  height: 218px;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  border: 0.5px solid #d0d0d0;
}

.slider-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-card:hover .slider-card-image {
  border-color: #c8102e;
}

.placeholder-slide-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: white;
}

.slide-img-1 {
  background: linear-gradient(135deg, #f39c12 0%, #f1c40f 100%);
}

.slide-img-2 {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.slide-img-3 {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.slide-img-4 {
  background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
}

.slide-img-5 {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.slide-img-6 {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.slide-img-7 {
  background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
}

.slide-img-8 {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}

.slider-card h3 {
  margin: initial;
  margin-top: 20px;
  font-weight: 700;
  font-size: 1.1875rem;
  letter-spacing: 0.06em;
  line-height: 1.4736842105;
  color: #333;
  display: block;
  text-decoration: none;
  transition: text-decoration 0.3s ease;
  padding: 0;
  width: 386px;
  box-sizing: border-box;
}

.slider-card:hover h3 {
  text-decoration: underline;
  text-decoration-color: #000;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.slider-card p {
  margin-top: 0.2352941176em;
  font-size: 1.0625rem;
  line-height: 1.7647058824;
  letter-spacing: 0.06em;
  color: #000;
  display: block;
  text-decoration: none;
  transition: text-decoration 0.3s ease;
  padding: 0;
  width: 386px;
  box-sizing: border-box;
}

.slider-card:hover p {
  text-decoration: underline;
  text-decoration-color: #000;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.slider-btn {
  width: 55px;
  height: 36px;
  border: none;
  background-color: #e0e0e0;
  color: #666;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  line-height: 1;
  border-radius: 0;
}

.slider-btn.active {
  background-color: #c8102e;
  color: #fff;
  cursor: pointer;
}

.slider-btn:not(.active):hover {
  background-color: #c8102e;
  color: #fff;
}

.slider-btn:not(.active) {
  opacity: 0.6;
}

.slider-indicator {
  background-color: #e0e0e0;
  padding: 9px 22px;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}

/* Product Support Info Section */
.product-support-info {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.support-info-box {
  display: inline-flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 0.32em 0.8em;
  border: 1px solid #c8c8c8;
  font-size: 1.5625em;
  line-height: 1.3em;
  letter-spacing: 0.06em;
  background-color: #fff;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
}

.support-info-box:hover {
  border-color: #c8102e;
}

.globe-icon {
  margin-right: 15px;
  display: inline-flex;
  align-items: center;
}

.globe-icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.support-text {
  flex: 1;
  font-weight: 500;
  color: #333;
}

.arrow-icon {
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  margin-left: 15px;
  position: relative;
}

.arrow-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.6em;
  height: 0.6em;
  border-top: 1.5px solid #be000b;
  border-right: 1.5px solid #be000b;
  transform: rotate(45deg) translate(-50%, -50%);
  transform-origin: -0.08em -0.16em;
}

/* Advisory Notice */
.advisory-notice {
  width: 1200px;
  max-width: 100%;
  margin: 40px auto 0;
  border-top: #c8c8c8 1px solid;
  border-bottom: #c8c8c8 1px solid;
}

.advisory-notice p {
  margin: 0;
  padding: 12px 12px 13px 12px;
  font-size: 1.0625rem;
  line-height: 1.5em;
  letter-spacing: 0.03em;
  text-align: left;
  color: #333;
  white-space: nowrap;
}

.advisory-date {
  font-weight: 700;
  margin-right: 10px;
  color: #333;
  display: inline;
}

.advisory-notice a {
  color: #333;
  text-decoration: underline;
  transition: all 0.3s;
  display: inline;
}

.advisory-notice a:hover {
  color: #333;
  text-decoration: none;
}

/* Footer */
.footer {
  background-color: #f0f0f0;
  color: #333;
  padding: 60px 20px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 25px;
  font-weight: 700;
}

.footer-column h4 a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}

.footer-column h4 a:hover {
  color: #333;
  text-decoration: underline;
  text-decoration-color: #000;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-subtitle {
  margin-top: 35px;
}

.footer-subcolumns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  padding-top: 0.5em;
  line-height: 1.2em;
}

.footer-column a {
  display: inherit;
  overflow: hidden;
  height: 100%;
  margin: initial;
  font-size: 0.8125em;
  letter-spacing: 0.06em;
  font-family: "Roboto", sans-serif;
  color: #000;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  white-space: nowrap;
}

.footer-column a:hover {
  color: #000;
  text-decoration: underline;
  text-decoration-color: #000;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-social {
  margin-bottom: 40px;
  padding-top: 20px;
}

.footer-social h4 {
  font-size: 16px;
  font-weight: 700;
}

.footer-social h4 a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}

.footer-social h4 a:hover {
  color: #333;
  text-decoration: underline;
  text-decoration-color: #000;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-bottom {
  border-top: 1px solid #d0d0d0;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: #333;
  font-size: 14px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-links a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  position: relative;
}

.footer-links a:hover {
  color: #333;
  text-decoration: underline;
  text-decoration-color: #000;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-links .separator {
  color: #999;
  font-size: 14px;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #e0e0e0;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #333;
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

.scroll-to-top:hover {
  background-color: #c8102e;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.show {
  display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }

  .header-left {
    width: 100%;
  }

  .nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .header-right {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .hero-slider {
    height: 400px;
  }

  .hero-content h2 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .gallery-image {
    height: auto;
    min-height: 300px;
  }

  .gallery-caption {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: auto;
    padding: 30px 20px;
    align-items: flex-start;
  }

  .gallery-caption-title {
    font-size: 32px;
    font-weight: 650;
    width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .gallery-caption-lead {
    font-size: 15px;
    width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .gallery-caption-link {
    font-size: 14px;
    margin-left: 0;
    text-align: left;
    justify-content: flex-start;
  }

  .gallery-menu {
    grid-template-columns: 1fr;
    gap: 0px;
    padding: 30px 20px !important;
  }

  .menu-column a {
    font-size: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-subcolumns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }

  .slider-card {
    min-width: 100%;
  }

  .slider-controls {
    gap: 10px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .slider-indicator {
    padding: 8px 16px;
    font-size: 14px;
  }

  .news-layout {
    flex-direction: column;
    gap: 30px;
  }

  .news-sidebar {
    min-width: 100%;
  }

  .news-cards {
    grid-template-columns: 1fr;
  }

  .more-contents-slider {
    padding: 60px 20px;
  }

  .slider-header h2 {
    font-size: 28px;
  }

  .support-info-box {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 20px;
  }

  .globe-icon {
    margin-right: 0;
    margin-bottom: 5px;
  }

  .arrow-icon {
    margin-left: 0;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}
