@charset "UTF-8";
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: all;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-panels {
  position: relative;
  width: 100%;
  height: 100%;
}

.loader-panel {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.loader-panel.panel-orange, .loader-panel.panel-blue {
  display: none;
}

.loader-panel.panel-white {
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 30%, #16213e 60%, #0f3460 100%);
  z-index: 1;
}

.loader-panel.panel-white::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.12) 1px, transparent 1px), radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.08) 1px, transparent 1px), radial-gradient(circle at 50% 40%, rgba(251, 191, 36, 0.1) 1.5px, transparent 1.5px), radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px), radial-gradient(circle at 90% 60%, rgba(249, 115, 22, 0.08) 1px, transparent 1px);
  background-size: 200px 200px, 150px 150px, 180px 180px, 120px 120px, 160px 160px;
  -webkit-animation: particleTwinkle 3s ease-in-out infinite;
          animation: particleTwinkle 3s ease-in-out infinite;
}

.loader-panel.panel-white::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
}

.loader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 4;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.loader-logo .loader-logo-image {
  height: 4.5rem;
  width: auto;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

@media (min-width: 768px) {
  .loader-logo .loader-logo-image {
    height: 5.5rem;
  }
}

.loader-logo .loader-progress {
  margin-top: 2rem;
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .loader-logo .loader-progress {
    width: 220px;
  }
}

.loader-logo .loader-progress::after {
  content: '';
  display: block;
  height: 100%;
  width: 0%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  -webkit-animation: progressBar 1.8s ease-out forwards;
          animation: progressBar 1.8s ease-out forwards;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes progressBar {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes progressBar {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes particleTwinkle {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes particleTwinkle {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.7;
  font-weight: 700;
  font-size: 1rem;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2.5rem;
  }
}

.text-white {
  color: #ffffff;
}

.text-balance {
  text-wrap: balance;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-transform: translate3d(0, -30px, 0);
            transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transform: translate3d(0, -15px, 0);
            transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
            transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-transform: translate3d(0, -30px, 0);
            transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transform: translate3d(0, -15px, 0);
            transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
            transform: translate3d(0, -4px, 0);
  }
}

.animate-fade-in-up {
  -webkit-animation: fadeInUp 0.6s ease-out;
          animation: fadeInUp 0.6s ease-out;
}

.animate-bounce {
  -webkit-animation: bounce 2s infinite;
          animation: bounce 2s infinite;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 9999px;
  font-weight: 600;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn.btn-primary {
  background: linear-gradient(135deg, #f97316 0%, rgba(249, 115, 22, 0.85) 100%);
  color: #ffffff;
  -webkit-box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
          box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn.btn-primary:hover {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.9) 0%, rgba(249, 115, 22, 0.75) 100%);
  -webkit-box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
          box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn.btn-primary:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
          box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.btn.btn-white {
  background: #ffffff;
  color: #1e40af;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn.btn-white:hover {
  background: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  color: #f97316;
}

.btn.btn-white:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid #ffffff;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.btn.btn-outline-white:hover {
  background: #ffffff;
  color: #f97316;
  border-color: #ffffff;
  -webkit-box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
          box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn.btn-outline-white:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.btn.btn-secondary {
  background: linear-gradient(135deg, #1e40af 0%, rgba(30, 64, 175, 0.85) 100%);
  color: #ffffff;
  -webkit-box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
          box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.btn.btn-secondary:hover {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(30, 64, 175, 0.75) 100%);
  -webkit-box-shadow: 0 6px 16px rgba(30, 64, 175, 0.4);
          box-shadow: 0 6px 16px rgba(30, 64, 175, 0.4);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn.btn-secondary:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3);
          box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3);
}

.main {
  min-height: 100vh;
  background: #ffffff;
}

.btn.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn.btn-block {
  width: 100%;
  display: block;
  text-align: center;
}

.btn.btn-outline-primary {
  background: rgba(249, 115, 22, 0.05);
  color: #f97316;
  border: 2px solid #f97316;
  -webkit-box-shadow: 0 2px 8px rgba(249, 115, 22, 0.15);
          box-shadow: 0 2px 8px rgba(249, 115, 22, 0.15);
}

.btn.btn-outline-primary:hover {
  background: #f97316;
  color: #ffffff;
  -webkit-box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
          box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn.btn-outline-primary:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: 0 2px 8px rgba(249, 115, 22, 0.2);
          box-shadow: 0 2px 8px rgba(249, 115, 22, 0.2);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
}

.hero-section .hero-slider {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

.hero-section .hero-slider .hero-slide {
  position: relative;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero-section .hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 10s ease-out;
  transition: -webkit-transform 10s ease-out;
  transition: transform 10s ease-out;
  transition: transform 10s ease-out, -webkit-transform 10s ease-out;
}

.hero-section .slick-active .hero-background {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.hero-section .hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(15, 35, 70, 0.6) 0%, rgba(10, 25, 50, 0.75) 50%, rgba(5, 15, 35, 0.85) 100%);
}

.hero-section .hero-content {
  position: relative;
  z-index: 10;
  color: #ffffff;
  padding: 0 2rem;
  max-width: 90rem;
  margin: auto;
  text-align: center;
}

.hero-section .hero-content .hero-text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero-section .hero-content .hero-subtitle {
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "游明朝", "HiraMinProN-W3", serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6), 0 4px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

@media (min-width: 640px) {
  .hero-section .hero-content .hero-subtitle {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  .hero-section .hero-content .hero-subtitle {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .hero-section .hero-content .hero-subtitle {
    font-size: 2.25rem;
  }
}

.hero-section .hero-content .hero-title {
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "游明朝", "HiraMinProN-W3", serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7), 0 2px 15px rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

@media (min-width: 640px) {
  .hero-section .hero-content .hero-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .hero-section .hero-content .hero-title {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-section .hero-content .hero-title {
    font-size: 3.25rem;
  }
}

.hero-section .hero-content .hero-emphasis {
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "游明朝", "HiraMinProN-W3", serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.15em;
  color: #ffffff;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3), 0 8px 50px rgba(0, 0, 0, 0.8), 0 4px 25px rgba(0, 0, 0, 0.6), 0 2px 12px rgba(0, 0, 0, 0.4);
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(40px) scale(0.98);
          transform: translateY(40px) scale(0.98);
}

@media (min-width: 640px) {
  .hero-section .hero-content .hero-emphasis {
    font-size: 5rem;
  }
}

@media (min-width: 768px) {
  .hero-section .hero-content .hero-emphasis {
    font-size: 7rem;
  }
}

@media (min-width: 1024px) {
  .hero-section .hero-content .hero-emphasis {
    font-size: 9rem;
    letter-spacing: 0.2em;
  }
}

@media (min-width: 1280px) {
  .hero-section .hero-content .hero-emphasis {
    font-size: 11rem;
  }
}

.hero-section .hero-content .hero-emphasis-small {
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "游明朝", "HiraMinProN-W3", serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.15em;
  color: #ffffff;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3), 0 8px 50px rgba(0, 0, 0, 0.8), 0 4px 25px rgba(0, 0, 0, 0.6), 0 2px 12px rgba(0, 0, 0, 0.4);
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(40px) scale(0.98);
          transform: translateY(40px) scale(0.98);
}

@media (min-width: 640px) {
  .hero-section .hero-content .hero-emphasis-small {
    font-size: 3.5rem;
  }
}

@media (min-width: 768px) {
  .hero-section .hero-content .hero-emphasis-small {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-section .hero-content .hero-emphasis-small {
    font-size: 5.5rem;
    letter-spacing: 0.2em;
  }
}

@media (min-width: 1280px) {
  .hero-section .hero-content .hero-emphasis-small {
    font-size: 6.5rem;
  }
}

.hero-section .slick-dots {
  bottom: 5rem;
}

.hero-section .slick-dots li {
  margin: 0 0.75rem;
}

.hero-section .slick-dots li button {
  width: 12px;
  height: 12px;
}

.hero-section .slick-dots li button:before {
  content: '';
  width: 12px;
  height: 12px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  opacity: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-section .slick-dots li.slick-active button:before {
  background: #ffffff;
  border-color: #ffffff;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.hero-section .scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #ffffff;
  z-index: 15;
  -webkit-animation: scrollBounce 2s infinite;
          animation: scrollBounce 2s infinite;
  cursor: pointer;
  opacity: 0.8;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.hero-section .scroll-indicator:hover {
  opacity: 1;
}

.hero-section .scroll-indicator .scroll-mouse {
  width: 1.75rem;
  height: 2.75rem;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero-section .scroll-indicator .scroll-mouse .scroll-wheel {
  width: 3px;
  height: 8px;
  background: #ffffff;
  border-radius: 2px;
  margin-top: 6px;
  -webkit-animation: scrollWheel 2s infinite;
          animation: scrollWheel 2s infinite;
}

@-webkit-keyframes heroSubtitleIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-filter: blur(4px);
            filter: blur(4px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes heroSubtitleIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-filter: blur(4px);
            filter: blur(4px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@-webkit-keyframes heroTitleIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    -webkit-filter: blur(6px);
            filter: blur(6px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes heroTitleIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    -webkit-filter: blur(6px);
            filter: blur(6px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@-webkit-keyframes heroEmphasisIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px) scale(0.95);
            transform: translateY(50px) scale(0.95);
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  60% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes heroEmphasisIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px) scale(0.95);
            transform: translateY(50px) scale(0.95);
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  60% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@-webkit-keyframes scrollBounce {
  0%, 100% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  50% {
    -webkit-transform: translate(-50%, 10px);
            transform: translate(-50%, 10px);
  }
}

@keyframes scrollBounce {
  0%, 100% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  50% {
    -webkit-transform: translate(-50%, 10px);
            transform: translate(-50%, 10px);
  }
}

@-webkit-keyframes scrollWheel {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-header .section-title {
    font-size: 2.75rem;
  }
}

.section-header .section-description {
  font-size: 1.35rem;
  color: #000000;
  max-width: 36rem;
  margin: 0 auto;
  font-weight: 600;
}

.section-label {
  color: #f97316;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  display: block;
}

@media (min-width: 768px) {
  .section-label {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .section-label {
    font-size: 3rem;
  }
}

.section-title-large {
  font-size: 2.5rem !important;
  margin-bottom: 2rem !important;
}

@media (min-width: 768px) {
  .section-title-large {
    font-size: 3.5rem !important;
  }
}

@media (min-width: 1024px) {
  .section-title-large {
    font-size: 4rem !important;
  }
}

.section-description-large {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-description-large {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .section-description-large {
    font-size: 2rem;
  }
}

.section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.65rem;
  }
}

.news-section-new {
  padding: 6rem 0;
  background: #ffffff;
}

.news-section-new .news-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .news-section-new .news-layout {
    -ms-grid-columns: 280px 1fr;
        grid-template-columns: 280px 1fr;
    gap: 4rem;
  }
}

.news-section-new .news-header .section-label {
  color: #f97316;
}

.news-section-new .news-header .section-cta {
  margin-top: 2rem;
}

.news-section-new .news-list .news-list-item {
  display: block;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.news-section-new .news-list .news-list-item:first-child {
  padding-top: 0;
}

.news-section-new .news-list .news-list-item:last-child {
  border-bottom: 1px solid #e2e8f0;
}

.news-section-new .news-list .news-list-item:hover {
  opacity: 0.7;
}

.news-section-new .news-list .news-list-item .news-list-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

.news-section-new .news-list .news-list-item .news-list-meta .news-list-date {
  font-size: 1rem;
  color: #1a1a1a;
  font-weight: 600;
}

.news-section-new .news-list .news-list-item .news-list-meta .news-list-category {
  font-size: 0.875rem;
  font-weight: 600;
  color: #000000;
  background: rgba(248, 250, 252, 0.5);
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
}

.news-section-new .news-list .news-list-item .news-list-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .news-section-new .news-list .news-list-item .news-list-title {
    font-size: 1.25rem;
  }
}

.news-section {
  padding: 5rem 0;
  background: rgba(248, 250, 252, 0.3);
}

.news-section .news-scroll {
  margin: 0 auto;
  padding-bottom: 2rem;
}

.news-section .news-scroll.news-slider .news-item-wrapper {
  padding: 0.5rem;
}

.news-section .news-scroll.news-static {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .news-section .news-scroll.news-static {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .news-section .news-scroll.news-static {
    -ms-grid-columns: (minmax(18rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  }
}

.news-section .news-scroll.news-static .news-item-wrapper {
  width: 100%;
  padding: 0.5rem;
}

.news-section .news-scroll.news-centered {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news-section .news-scroll .news-item-wrapper .news-item {
  display: block;
  background: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 100%;
}

.news-section .news-scroll .news-item-wrapper .news-item:hover {
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.news-section .news-scroll .news-item-wrapper .news-item .news-image {
  position: relative;
  overflow: hidden;
  height: 12rem;
}

.news-section .news-scroll .news-item-wrapper .news-item .news-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.news-section .news-scroll .news-item-wrapper .news-item .news-image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.news-section .news-scroll .news-item-wrapper .news-item .news-image .news-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #f97316;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 2;
}

.news-section .news-scroll .news-item-wrapper .news-item .news-content {
  padding: 1.5rem;
}

.news-section .news-scroll .news-item-wrapper .news-item .news-content .news-date {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.news-section .news-scroll .news-item-wrapper .news-item .news-content .news-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-section .slick-dots {
  bottom: -2.5rem;
}

.news-section .slick-dots li button:before {
  color: #f97316;
  font-size: 0.75rem;
}

.news-section .slick-dots li.slick-active button:before {
  color: #f97316;
}

.news-section .slick-prev,
.news-section .slick-next {
  width: 3rem;
  height: 3rem;
  background: #ffffff;
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news-section .slick-prev:hover,
.news-section .slick-next:hover {
  background: #f97316;
}

.news-section .slick-prev:hover i,
.news-section .slick-next:hover i {
  color: #ffffff;
}

.news-section .slick-prev:before,
.news-section .slick-next:before {
  display: none;
}

.news-section .slick-prev i,
.news-section .slick-next i {
  color: #f97316;
  font-size: 1.25rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.news-section .slick-prev {
  left: -1.5rem;
}

@media (min-width: 1024px) {
  .news-section .slick-prev {
    left: -3rem;
  }
}

.news-section .slick-next {
  right: -1.5rem;
}

@media (min-width: 1024px) {
  .news-section .slick-next {
    right: -3rem;
  }
}

@media (max-width: 768px) {
  .news-section .slick-prev,
  .news-section .slick-next {
    display: none !important;
  }
}

.message-section-styled {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.message-section-styled .message-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.message-section-styled .message-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.92) 0%, rgba(26, 54, 93, 0.85) 100%);
}

.message-section-styled .container {
  position: relative;
  z-index: 10;
}

.message-section-styled .section-label {
  color: #ffffff;
}

.message-section-styled .section-title {
  color: #ffffff;
}

.message-section-styled .section-description {
  color: rgba(255, 255, 255, 0.9);
}

.message-section-styled .section-cta {
  margin-top: 2rem;
}

.message-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.message-section .message-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.message-section .blue-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(147, 51, 234, 0.85) 50%, rgba(236, 72, 153, 0.8) 100%);
}

.message-section .message-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #ffffff;
  max-width: 64rem;
  margin: 0 auto;
}

.message-section .message-content .message-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .message-section .message-content .message-title {
    font-size: 2.25rem;
  }
}

.message-section .message-content .message-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.message-section .message-content .message-card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.message-section .message-content .message-card .message-text {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .message-section .message-content .message-card .message-text {
    font-size: 1.25rem;
  }
}

.message-section .message-content .message-card .message-text:last-child {
  margin-bottom: 0;
  font-size: 1rem;
}

@media (min-width: 640px) {
  .message-section .message-content .message-card .message-text:last-child {
    font-size: 1.125rem;
  }
}

.purpose-section {
  padding: 6rem 0;
  background: #ffffff;
}

.purpose-section .purpose-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1024px) {
  .purpose-section .purpose-grid {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.purpose-section .purpose-grid .purpose-content .section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .purpose-section .purpose-grid .purpose-content .section-title {
    font-size: 2.75rem;
  }
}

.purpose-section .purpose-grid .purpose-content .section-description {
  color: #000000;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.purpose-section .purpose-grid .purpose-content .purpose-list .purpose-item {
  border-left: 3px solid #f97316;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.purpose-section .purpose-grid .purpose-content .purpose-list .purpose-item .purpose-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #f97316;
  margin-right: 0.75rem;
  display: inline-block;
}

.purpose-section .purpose-grid .purpose-content .purpose-list .purpose-item .purpose-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a1a;
  display: inline-block;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.purpose-section .purpose-grid .purpose-content .purpose-list .purpose-item .purpose-description {
  color: #000000;
  font-size: 1.125rem;
  line-height: 1.9;
  font-weight: 600;
}

.purpose-section .purpose-grid .purpose-image img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  -webkit-box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f97316 0%, #fb923c 50%, #fbbf24 100%);
}

.cta-section .cta-content {
  text-align: center;
  color: #ffffff;
  max-width: 48rem;
  margin: 0 auto;
}

.cta-section .cta-content .cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .cta-section .cta-content .cta-title {
    font-size: 2.25rem;
  }
}

.cta-section .cta-content .cta-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #fff;
}

@media (min-width: 640px) {
  .cta-section .cta-content .cta-description {
    font-size: 1.25rem;
  }
}

.cta-section .cta-content .cta-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 640px) {
  .cta-section .cta-content .cta-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.member-section {
  padding: 6rem 0;
  background: #fafafa;
}

.member-section .member-list-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
  text-align: left;
}

@media (min-width: 640px) {
  .member-section .member-list-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .member-section .member-list-grid {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

.member-section .member-list-grid .member-item {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 2px solid #f97316;
}

.member-section .member-list-grid .member-item .member-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.member-section .member-list-grid .member-item .member-position {
  color: #f97316;
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.member-section .member-list-grid .member-item .member-company {
  color: #000000;
  font-size: 0.9375rem;
  font-weight: 600;
}

.member-section .member-list-grid .member-item .member-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #f97316;
  text-decoration: none;
  margin-top: 0.5rem;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 50%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.member-section .member-list-grid .member-item .member-link i {
  font-size: 0.75rem;
}

.member-section .member-list-grid .member-item .member-link:hover {
  background: #f97316;
  color: #ffffff;
}

.member-section .section-cta {
  margin-top: 3rem;
}

.btn-back-to-list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-width: 16rem;
  padding: 1rem 1rem 1rem 1.75rem;
  background: #eef2f6;
  border: none;
  border-radius: 100px;
  text-decoration: none;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}

.btn-back-to-list:hover {
  background: #e4e9ef;
}

.btn-back-to-list .btn-back-text {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1a365d;
  letter-spacing: 0.02em;
}

.btn-back-to-list .btn-back-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: #f97316;
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.875rem;
  margin-left: 1rem;
}

.btn-back-to-list.btn-back-white {
  background: #ffffff;
}

.btn-back-to-list.btn-back-white:hover {
  background: rgba(255, 255, 255, 0.95);
}

.btn-back-to-list.btn-back-outline {
  background: transparent;
  border: 2px solid #ffffff;
}

.btn-back-to-list.btn-back-outline .btn-back-text {
  color: #ffffff;
}

.btn-back-to-list.btn-back-outline .btn-back-icon {
  background: #ffffff;
  color: #f97316;
}

.btn-back-to-list.btn-back-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.history-section {
  padding: 6rem 0;
  background: #ffffff;
}

.history-section .history-timeline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.history-section .history-timeline-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 4px 1fr;
      grid-template-columns: 4px 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .history-section .history-timeline-item {
    -ms-grid-columns: 4px 200px 1fr;
        grid-template-columns: 4px 200px 1fr;
    gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .history-section .history-timeline-item {
    -ms-grid-columns: 4px 300px 1fr;
        grid-template-columns: 4px 300px 1fr;
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .history-section .history-timeline-item {
    -ms-grid-columns: 4px 400px 1fr;
        grid-template-columns: 4px 400px 1fr;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .history-section .history-timeline-item {
    -ms-grid-columns: 4px 1fr;
        grid-template-columns: 4px 1fr;
    -ms-grid-rows: auto auto;
        grid-template-rows: auto auto;
    gap: 0 1.5rem;
  }
  .history-section .history-timeline-item .history-timeline-image {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
    margin-bottom: 0;
  }
  .history-section .history-timeline-item .history-timeline-content {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}

.history-section .history-timeline-line {
  width: 4px;
  background: #f97316;
  min-height: 100%;
}

.history-section .history-timeline-image {
  display: block;
}

.history-section .history-timeline-image img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .history-section .history-timeline-image img {
    height: 200px;
  }
}

@media (min-width: 1024px) {
  .history-section .history-timeline-image img {
    height: 240px;
  }
}

.history-section .history-timeline-content {
  padding: 1rem 0 3rem;
}

.history-section .history-timeline-content .history-year {
  font-size: 1rem;
  font-weight: 700;
  color: #f97316;
  margin-bottom: 0.75rem;
}

.history-section .history-timeline-content .history-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .history-section .history-timeline-content .history-title {
    font-size: 1.75rem;
  }
}

.history-section .history-timeline-content .history-description {
  color: #000000;
  font-size: 1.0625rem;
  line-height: 1.9;
  font-weight: 600;
}

.event-section {
  padding: 6rem 0;
  background: #fafafa;
}

.event-section .event-info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .event-section .event-info-row {
    gap: 3rem;
  }
}

.event-section .event-info-row .event-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}

.event-section .event-info-row .event-info-item .event-icon {
  font-size: 1.5rem;
  color: #f97316;
}

.event-section .event-info-row .event-info-item .event-info-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .event-section .event-info-row .event-info-item .event-info-text {
    font-size: 1.35rem;
  }
}

.event-section .schedule-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .event-section .schedule-grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.event-section .schedule-grid .schedule-section .schedule-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f97316;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #f97316;
}

.event-section .schedule-grid .schedule-section .schedule-item {
  background: rgba(248, 250, 252, 0.3);
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  padding: 1rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
}

.event-section .schedule-grid .schedule-section .schedule-item .schedule-time {
  font-weight: 700;
  color: #f97316;
  font-size: 0.9375rem;
}

.event-section .schedule-grid .schedule-section .schedule-item .schedule-activity {
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 600;
}

.event-section .section-cta {
  margin-top: 2rem;
}

.contact-section-styled {
  padding: 6rem 0;
  background: #ffffff;
}

.contact-section-styled .contact-card-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) {
  .contact-section-styled .contact-card-wrapper {
    min-height: 480px;
    border-radius: 2rem;
  }
}

.contact-section-styled .contact-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-section-styled .contact-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(26, 54, 93, 0.75) 100%);
}

.contact-section-styled .contact-card-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 3rem 2rem;
}

@media (min-width: 768px) {
  .contact-section-styled .contact-card-content {
    padding: 4rem 3rem;
  }
}

.contact-section-styled .contact-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .contact-section-styled .contact-subtitle {
    font-size: 1.25rem;
  }
}

.contact-section-styled .contact-title-large {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .contact-section-styled .contact-title-large {
    font-size: 5rem;
  }
}

.contact-section-styled .contact-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .contact-section-styled .contact-description {
    font-size: 1.125rem;
  }
}

.contact-section-styled .btn-contact-cta {
  display: inline-block;
  padding: 1.25rem 3rem;
  background: #f97316;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 100px;
  -webkit-transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.contact-section-styled .btn-contact-cta:hover {
  background: #ef6606;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

@media (min-width: 768px) {
  .contact-section-styled .btn-contact-cta {
    padding: 1.5rem 4rem;
    font-size: 1.25rem;
  }
}

.contact-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.contact-section .contact-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-section .blue-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(147, 51, 234, 0.85) 50%, rgba(236, 72, 153, 0.8) 100%);
}

.contact-section .contact-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #ffffff;
  max-width: 64rem;
  margin: 0 auto;
}

.contact-section .contact-content .contact-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .contact-section .contact-content .contact-title {
    font-size: 2.25rem;
  }
}

.contact-section .contact-content .contact-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.contact-section .contact-content .contact-card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.contact-section .contact-content .contact-card .contact-text {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .contact-section .contact-content .contact-card .contact-text {
    font-size: 1.25rem;
  }
}

.contact-section .contact-content .contact-card .contact-text:last-child {
  margin-bottom: 0;
  font-size: 1rem;
}

@media (min-width: 640px) {
  .contact-section .contact-content .contact-card .contact-text:last-child {
    font-size: 1.125rem;
  }
}

.page-header {
  position: relative;
  padding: 16rem 0 8rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 20rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.92) 0%, rgba(251, 146, 60, 0.88) 50%, rgba(251, 191, 36, 0.85) 100%);
  z-index: 1;
}

.page-header .page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  width: 100%;
}

.page-header .page-header-content .breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page-header .page-header-content .breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.page-header .page-header-content .breadcrumb a:hover {
  color: #ffffff;
}

.page-header .page-header-content .breadcrumb .breadcrumb-separator {
  color: rgba(255, 255, 255, 0.7);
}

.page-header .page-header-content .breadcrumb .breadcrumb-current {
  color: #ffffff;
  font-weight: 600;
}

.page-header .page-header-content .page-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .page-header .page-header-content .page-title {
    font-size: 4rem;
  }
}

.page-header .page-header-content .page-description,
.page-header .page-header-content .page-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 42rem;
  margin: 0 auto;
  font-weight: 700;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .page-header .page-header-content .page-description,
  .page-header .page-header-content .page-subtitle {
    font-size: 2rem;
  }
}

.page-header .error-code {
  font-size: 6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .page-header .error-code {
    font-size: 8rem;
  }
}

.breadcrumb-section {
  padding: 1rem 0;
  background: rgba(248, 250, 252, 0.3);
  border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-section .breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #000000;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-weight: 600;
}

.breadcrumb-section .breadcrumb a {
  color: #000000;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.breadcrumb-section .breadcrumb a:hover {
  color: #f97316;
}

.breadcrumb-section .breadcrumb .breadcrumb-separator {
  color: #000000;
}

.breadcrumb-section .breadcrumb .breadcrumb-current {
  color: #1a1a1a;
  font-weight: 700;
}

.error-content {
  padding: 5rem 0;
  background: rgba(248, 250, 252, 0.3);
  min-height: 50vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.error-content .error-search-wrapper {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.error-content .error-search-box {
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .error-content .error-search-box {
    padding: 4rem 3rem;
  }
}

.error-content .error-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .error-content .error-section-title {
    font-size: 2rem;
  }
}

.error-content .error-section-description {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.error-content .error-search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  max-width: 32rem;
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 640px) {
  .error-content .error-search-form {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.error-content .error-search-form .search-field {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.error-content .error-search-form .search-field:focus {
  outline: none;
  border-color: #f97316;
  -webkit-box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
          box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.error-content .error-search-form .search-field::-webkit-input-placeholder {
  color: #000000;
}

.error-content .error-search-form .search-field:-ms-input-placeholder {
  color: #000000;
}

.error-content .error-search-form .search-field::-ms-input-placeholder {
  color: #000000;
}

.error-content .error-search-form .search-field::placeholder {
  color: #000000;
}

.error-content .error-search-form .search-submit {
  padding: 0.875rem 2rem;
  white-space: nowrap;
}

.error-content .error-search-form .search-submit i {
  margin-right: 0.5rem;
}

.error-content .error-actions {
  text-align: center;
}

.error-content .error-actions .btn {
  min-width: 12rem;
}

.error-content .error-actions .btn i {
  margin-right: 0.5rem;
}

.search-results {
  padding: 3rem 0 5rem;
  background: #ffffff;
}

.search-results .search-results-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .search-results .search-results-container {
    -ms-grid-columns: 2fr 1fr;
        grid-template-columns: 2fr 1fr;
  }
}

.search-results .search-form-box {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(248, 250, 252, 0.3);
  border-radius: 0.5rem;
}

.search-results .search-results-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
}

.search-results .search-result-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 1.5rem;
}

.search-results .search-result-item:hover {
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .search-results .search-result-item {
    -ms-grid-columns: 200px 1fr;
        grid-template-columns: 200px 1fr;
  }
}

.search-results .no-results {
  text-align: center;
  padding: 4rem 2rem;
}

.search-results .no-results .no-results-icon {
  font-size: 4rem;
  color: #000000;
  margin-bottom: 1.5rem;
}

.search-results .no-results .search-tips {
  margin: 3rem 0;
  text-align: left;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-info-section {
  padding: 3rem 0;
  background: rgba(248, 250, 252, 0.3);
}

.contact-info-section .contact-info-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .contact-info-section .contact-info-grid {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .contact-info-section .contact-info-grid {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

.contact-info-section .contact-info-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  text-align: center;
}

.contact-info-section .contact-info-card:hover {
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-info-section .contact-info-card .contact-info-icon {
  font-size: 2.5rem;
  color: #f97316;
  margin-bottom: 1rem;
}

.contact-form-section {
  padding: 5rem 0;
  background: #ffffff;
}

.faq-section {
  padding: 5rem 0;
  background: rgba(248, 250, 252, 0.3);
}

.faq-section .faq-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.faq-section .faq-header .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .faq-section .faq-header .section-title {
    font-size: 2.5rem;
  }
}

.faq-section .faq-header .section-description {
  font-size: 1rem;
  color: #000000;
  line-height: 1.7;
}

.faq-section .faq-list {
  max-width: 56rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.faq-section .faq-item {
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: 1rem;
  padding: 2rem;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.faq-section .faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f97316), to(#1e40af));
  background: linear-gradient(180deg, #f97316 0%, #1e40af 100%);
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-section .faq-item:hover {
  border-color: rgba(249, 115, 22, 0.2);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.faq-section .faq-item:hover::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.faq-section .faq-item:hover .faq-question {
  color: #f97316;
}

.faq-section .faq-item .faq-question {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.75rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  line-height: 1.6;
}

.faq-section .faq-item .faq-question::before {
  content: 'Q';
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #f97316 0%, #1e40af 100%);
  color: #ffffff;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 0.1rem;
}

.faq-section .faq-item .faq-answer {
  color: #000000;
  line-height: 1.8;
  font-size: 0.9375rem;
  padding-left: 2.75rem;
}

.faq-section .faq-item .faq-answer a {
  color: #f97316;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.faq-section .faq-item .faq-answer a:hover {
  color: #1e40af;
  text-decoration: underline;
}

.map-section {
  padding: 5rem 0;
  background: #ffffff;
}

.map-section .map-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.map-section .map-header .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .map-section .map-header .section-title {
    font-size: 2.5rem;
  }
}

.map-section .map-header .section-description {
  font-size: 1.125rem;
  color: #000000;
  line-height: 1.7;
  font-weight: 600;
}

.map-section .map-placeholder {
  max-width: 64rem;
  margin: 0 auto;
  background: rgba(248, 250, 252, 0.3);
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.map-section .map-placeholder .map-notice {
  padding: 3rem 2rem;
  text-align: center;
  color: #000000;
  font-size: 0.9375rem;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(30, 64, 175, 0.03) 100%);
}

.map-section .map-placeholder .map-info {
  padding: 2.5rem;
  background: #ffffff;
}

.map-section .map-placeholder .map-info p {
  font-size: 1rem;
  line-height: 2;
  color: #1a1a1a;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.75rem;
}

.map-section .map-placeholder .map-info p:last-child {
  margin-bottom: 0;
}

.map-section .map-placeholder .map-info p strong {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 6rem;
  padding: 0.375rem 0.75rem;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(30, 64, 175, 0.08) 100%);
  color: #f97316;
  border-radius: 0.375rem;
  font-weight: 700;
  font-size: 0.875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.map-section .map-placeholder iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

.contact-info-section {
  padding: 4rem 0;
  background: #ffffff;
}

.contact-info-section .contact-info-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .contact-info-section .contact-info-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-info-section .contact-info-grid {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

.contact-info-section .contact-info-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-info-section .contact-info-card:hover {
  border-color: #f97316;
  -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.contact-info-section .contact-info-card:hover .contact-info-icon {
  background: linear-gradient(135deg, #f97316 0%, #1e40af 100%);
  color: #ffffff;
}

.contact-info-section .contact-info-card .contact-info-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(30, 64, 175, 0.08) 100%);
  color: #f97316;
  border-radius: 1rem;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-section .contact-info-card .contact-info-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.contact-info-section .contact-info-card .contact-info-text {
  font-size: 0.9375rem;
  color: #000000;
  line-height: 1.7;
}

.contact-form-section {
  padding: 5rem 0;
  background: rgba(248, 250, 252, 0.3);
}

.contact-form-section .contact-form-wrapper {
  max-width: 48rem;
  margin: 0 auto;
}

.contact-form-section .contact-form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-form-section .contact-form-header .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .contact-form-section .contact-form-header .section-title {
    font-size: 2.5rem;
  }
}

.contact-form-section .contact-form-header .section-description {
  font-size: 1rem;
  color: #000000;
  line-height: 1.7;
}

.contact-form-section .contact-form-content {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  padding: 3rem;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .contact-form-section .contact-form-content {
    padding: 2rem 1.5rem;
  }
}

.contact-form-section .contact-form-content .wpcf7-form p {
  margin-bottom: 1.5rem;
}

.contact-form-section .contact-form-content .wpcf7-form label {
  display: block;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.contact-form-section .contact-form-content .wpcf7-form input[type="text"],
.contact-form-section .contact-form-content .wpcf7-form input[type="email"],
.contact-form-section .contact-form-content .wpcf7-form input[type="tel"],
.contact-form-section .contact-form-content .wpcf7-form textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.contact-form-section .contact-form-content .wpcf7-form input[type="text"]:focus,
.contact-form-section .contact-form-content .wpcf7-form input[type="email"]:focus,
.contact-form-section .contact-form-content .wpcf7-form input[type="tel"]:focus,
.contact-form-section .contact-form-content .wpcf7-form textarea:focus {
  outline: none;
  border-color: #f97316;
  -webkit-box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
          box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.contact-form-section .contact-form-content .wpcf7-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form-section .contact-form-content .wpcf7-form .wpcf7-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: #f97316;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.contact-form-section .contact-form-content .wpcf7-form .wpcf7-submit:hover {
  background: rgba(249, 115, 22, 0.9);
}

.contact-form-section .contact-form-content .default-contact-form {
  text-align: center;
}

.contact-form-section .contact-form-content .default-contact-form .form-notice {
  font-size: 0.9375rem;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-form-section .contact-form-content .default-contact-form .form-placeholder {
  background: rgba(248, 250, 252, 0.3);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: left;
}

.contact-form-section .contact-form-content .default-contact-form .form-placeholder h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.contact-form-section .contact-form-content .default-contact-form .form-placeholder ol {
  margin: 0 0 2rem 1.5rem;
}

.contact-form-section .contact-form-content .default-contact-form .form-placeholder ol li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
  color: #000000;
}

.contact-form-section .contact-form-content .default-contact-form .form-placeholder p {
  margin-bottom: 1.5rem;
  color: #000000;
}

.contact-form-section .contact-form-content .default-contact-form .form-placeholder p:last-of-type {
  text-align: center;
}

.privacy-page .privacy-content,
.privacy-page .sitemap-content,
.sitemap-page .privacy-content,
.sitemap-page .sitemap-content {
  padding: 5rem 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(249, 115, 22, 0.02)), to(#ffffff));
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.02) 0%, #ffffff 100%);
}

.privacy-page .privacy-intro,
.privacy-page .sitemap-intro,
.sitemap-page .privacy-intro,
.sitemap-page .sitemap-intro {
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
  font-size: 1.125rem;
  color: #000000;
  line-height: 1.8;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 1rem;
  border: 1px solid rgba(249, 115, 22, 0.1);
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

@media (max-width: 768px) {
  .privacy-page .privacy-intro,
  .privacy-page .sitemap-intro,
  .sitemap-page .privacy-intro,
  .sitemap-page .sitemap-intro {
    padding: 1.5rem;
    font-size: 1rem;
  }
}

.privacy-page .privacy-wrapper,
.sitemap-page .privacy-wrapper {
  max-width: 48rem;
  margin: 0 auto;
}

.privacy-page .privacy-section,
.sitemap-page .privacy-section {
  margin-bottom: 3rem;
}

.privacy-page .privacy-section .privacy-section-title,
.sitemap-page .privacy-section .privacy-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.privacy-page .privacy-section .privacy-section-content,
.sitemap-page .privacy-section .privacy-section-content {
  color: #000000;
  line-height: 1.8;
}

.privacy-page .privacy-section .privacy-section-content ul, .privacy-page .privacy-section .privacy-section-content ol,
.sitemap-page .privacy-section .privacy-section-content ul,
.sitemap-page .privacy-section .privacy-section-content ol {
  margin-left: 2rem;
  margin-top: 0.5rem;
}

.privacy-page .privacy-section .privacy-section-content li,
.sitemap-page .privacy-section .privacy-section-content li {
  margin-bottom: 0.5rem;
}

.privacy-page .sitemap-wrapper,
.sitemap-page .sitemap-wrapper {
  max-width: 70rem;
  margin: 0 auto;
}

.privacy-page .sitemap-grid,
.sitemap-page .sitemap-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .privacy-page .sitemap-grid,
  .sitemap-page .sitemap-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .privacy-page .sitemap-grid,
  .sitemap-page .sitemap-grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.privacy-page .sitemap-section,
.sitemap-page .sitemap-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 2px solid transparent;
  border-radius: 1.25rem;
  padding: 2.5rem;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.privacy-page .sitemap-section::before,
.sitemap-page .sitemap-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#f97316), to(#1e40af));
  background: linear-gradient(90deg, #f97316 0%, #1e40af 100%);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-page .sitemap-section::after,
.sitemap-page .sitemap-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.02) 0%, rgba(30, 64, 175, 0.01) 100%);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.privacy-page .sitemap-section:hover,
.sitemap-page .sitemap-section:hover {
  -webkit-box-shadow: 0 12px 36px rgba(249, 115, 22, 0.15), 0 4px 12px rgba(30, 64, 175, 0.1);
          box-shadow: 0 12px 36px rgba(249, 115, 22, 0.15), 0 4px 12px rgba(30, 64, 175, 0.1);
  border-color: rgba(249, 115, 22, 0.3);
}

.privacy-page .sitemap-section:hover::before,
.sitemap-page .sitemap-section:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.privacy-page .sitemap-section:hover::after,
.sitemap-page .sitemap-section:hover::after {
  opacity: 1;
}

.privacy-page .sitemap-section:hover .sitemap-section-title,
.sitemap-page .sitemap-section:hover .sitemap-section-title {
  color: #f97316;
}

.privacy-page .sitemap-section:hover .sitemap-section-title .sitemap-icon,
.sitemap-page .sitemap-section:hover .sitemap-section-title .sitemap-icon {
  background: linear-gradient(135deg, #f97316 0%, #1e40af 100%);
  color: #ffffff;
  -webkit-box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
          box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

@media (max-width: 768px) {
  .privacy-page .sitemap-section,
  .sitemap-page .sitemap-section {
    padding: 2rem 1.5rem;
  }
}

.privacy-page .sitemap-section .sitemap-section-title,
.sitemap-page .sitemap-section .sitemap-section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid transparent;
  -o-border-image: linear-gradient(90deg, rgba(249, 115, 22, 0.2) 0%, rgba(30, 64, 175, 0.1) 100%);
     border-image: -webkit-gradient(linear, left top, right top, from(rgba(249, 115, 22, 0.2)), to(rgba(30, 64, 175, 0.1)));
     border-image: linear-gradient(90deg, rgba(249, 115, 22, 0.2) 0%, rgba(30, 64, 175, 0.1) 100%);
  border-image-slice: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .privacy-page .sitemap-section .sitemap-section-title,
  .sitemap-page .sitemap-section .sitemap-section-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}

.privacy-page .sitemap-section .sitemap-section-title .sitemap-icon,
.sitemap-page .sitemap-section .sitemap-section-title .sitemap-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0%, rgba(30, 64, 175, 0.08) 100%);
  color: #f97316;
  font-size: 1.5rem;
  border-radius: 0.75rem;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: 0 2px 8px rgba(249, 115, 22, 0.1);
          box-shadow: 0 2px 8px rgba(249, 115, 22, 0.1);
}

@media (max-width: 768px) {
  .privacy-page .sitemap-section .sitemap-section-title .sitemap-icon,
  .sitemap-page .sitemap-section .sitemap-section-title .sitemap-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }
}

.privacy-page .sitemap-section .sitemap-list,
.sitemap-page .sitemap-section .sitemap-list {
  list-style: none;
  position: relative;
  z-index: 1;
}

.privacy-page .sitemap-section .sitemap-list li,
.sitemap-page .sitemap-section .sitemap-list li {
  margin-bottom: 0.875rem;
  padding-left: 0;
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-page .sitemap-section .sitemap-list li::before,
.sitemap-page .sitemap-section .sitemap-list li::before {
  content: '';
  position: absolute;
  left: 0;
  color: #f97316;
  opacity: 0;
  -webkit-transform: translateX(-4px);
          transform: translateX(-4px);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
  line-height: 1.5;
}

.privacy-page .sitemap-section .sitemap-list li:hover,
.sitemap-page .sitemap-section .sitemap-list li:hover {
  padding-left: 2rem;
}

.privacy-page .sitemap-section .sitemap-list li:hover::before,
.sitemap-page .sitemap-section .sitemap-list li:hover::before {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.privacy-page .sitemap-section .sitemap-list li a,
.sitemap-page .sitemap-section .sitemap-list li a {
  color: #000000;
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.privacy-page .sitemap-section .sitemap-list li a:hover,
.sitemap-page .sitemap-section .sitemap-list li a:hover {
  color: #f97316;
  font-weight: 600;
}

.privacy-page .sitemap-section .sitemap-list li.sitemap-sublist-title,
.sitemap-page .sitemap-section .sitemap-list li.sitemap-sublist-title {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  padding-left: 0;
  font-weight: 700;
  font-size: 0.875rem;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.privacy-page .sitemap-section .sitemap-list li.sitemap-sublist-title::before,
.sitemap-page .sitemap-section .sitemap-list li.sitemap-sublist-title::before {
  display: none;
}

.privacy-page .sitemap-section .sitemap-list li.sitemap-sublist-title:hover,
.sitemap-page .sitemap-section .sitemap-list li.sitemap-sublist-title:hover {
  padding-left: 0;
}

.privacy-page .sitemap-section .sitemap-list li.sitemap-subitem,
.sitemap-page .sitemap-section .sitemap-list li.sitemap-subitem {
  padding-left: 2rem;
  margin-bottom: 0.625rem;
}

.privacy-page .sitemap-section .sitemap-list li.sitemap-subitem::before,
.sitemap-page .sitemap-section .sitemap-list li.sitemap-subitem::before {
  content: '•';
  left: 1rem;
  font-size: 0.75rem;
}

.privacy-page .sitemap-section .sitemap-list li.sitemap-subitem:hover,
.sitemap-page .sitemap-section .sitemap-list li.sitemap-subitem:hover {
  padding-left: 2.5rem;
}

.privacy-page .sitemap-section .sitemap-list li.sitemap-subitem:hover::before,
.sitemap-page .sitemap-section .sitemap-list li.sitemap-subitem:hover::before {
  left: 1.5rem;
}

.privacy-page .sitemap-section .sitemap-list li.sitemap-subitem a,
.sitemap-page .sitemap-section .sitemap-list li.sitemap-subitem a {
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.9;
}

.privacy-page .sitemap-section .sitemap-list li.sitemap-subitem a:hover,
.sitemap-page .sitemap-section .sitemap-list li.sitemap-subitem a:hover {
  opacity: 1;
}

.privacy-page .sitemap-section .sitemap-list li .sitemap-date,
.sitemap-page .sitemap-section .sitemap-list li .sitemap-date {
  display: block;
  background: transparent;
  border: none;
  margin: 0;
  padding: 0;
  color: #000000;
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.privacy-page .sitemap-search,
.sitemap-page .sitemap-search {
  max-width: 100%;
  margin: 5rem auto 0;
  padding: 3rem;
  background: rgba(248, 250, 252, 0.3);
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  text-align: center;
}

@media (max-width: 768px) {
  .privacy-page .sitemap-search,
  .sitemap-page .sitemap-search {
    padding: 2rem 1.5rem;
    margin-top: 3rem;
  }
}

.privacy-page .sitemap-search .sitemap-search-title,
.sitemap-page .sitemap-search .sitemap-search-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .privacy-page .sitemap-search .sitemap-search-title,
  .sitemap-page .sitemap-search .sitemap-search-title {
    font-size: 1.5rem;
  }
}

.privacy-page .sitemap-search p,
.sitemap-page .sitemap-search p {
  color: #000000;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.7;
}

.privacy-page .sitemap-search form .search-form-wrapper,
.sitemap-page .sitemap-search form .search-form-wrapper {
  max-width: 42rem;
  margin: 0 auto;
}

.privacy-page .sitemap-search form .search-form,
.sitemap-page .sitemap-search form .search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 640px) {
  .privacy-page .sitemap-search form .search-form,
  .sitemap-page .sitemap-search form .search-form {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.privacy-page .sitemap-search form input[type="search"],
.privacy-page .sitemap-search form .search-field,
.sitemap-page .sitemap-search form input[type="search"],
.sitemap-page .sitemap-search form .search-field {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  background: #ffffff;
  color: #1a1a1a;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media (max-width: 640px) {
  .privacy-page .sitemap-search form input[type="search"],
  .privacy-page .sitemap-search form .search-field,
  .sitemap-page .sitemap-search form input[type="search"],
  .sitemap-page .sitemap-search form .search-field {
    margin-bottom: 1rem;
    width: 100%;
  }
}

.privacy-page .sitemap-search form input[type="search"]:focus,
.privacy-page .sitemap-search form .search-field:focus,
.sitemap-page .sitemap-search form input[type="search"]:focus,
.sitemap-page .sitemap-search form .search-field:focus {
  outline: none;
  border-color: #f97316;
  -webkit-box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
          box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.privacy-page .sitemap-search form input[type="search"]::-webkit-input-placeholder,
.privacy-page .sitemap-search form .search-field::-webkit-input-placeholder,
.sitemap-page .sitemap-search form input[type="search"]::-webkit-input-placeholder,
.sitemap-page .sitemap-search form .search-field::-webkit-input-placeholder {
  color: #000000;
}

.privacy-page .sitemap-search form input[type="search"]:-ms-input-placeholder,
.privacy-page .sitemap-search form .search-field:-ms-input-placeholder,
.sitemap-page .sitemap-search form input[type="search"]:-ms-input-placeholder,
.sitemap-page .sitemap-search form .search-field:-ms-input-placeholder {
  color: #000000;
}

.privacy-page .sitemap-search form input[type="search"]::-ms-input-placeholder,
.privacy-page .sitemap-search form .search-field::-ms-input-placeholder,
.sitemap-page .sitemap-search form input[type="search"]::-ms-input-placeholder,
.sitemap-page .sitemap-search form .search-field::-ms-input-placeholder {
  color: #000000;
}

.privacy-page .sitemap-search form input[type="search"]::placeholder,
.privacy-page .sitemap-search form .search-field::placeholder,
.sitemap-page .sitemap-search form input[type="search"]::placeholder,
.sitemap-page .sitemap-search form .search-field::placeholder {
  color: #000000;
}

.privacy-page .sitemap-search form button[type="submit"],
.privacy-page .sitemap-search form .search-submit,
.sitemap-page .sitemap-search form button[type="submit"],
.sitemap-page .sitemap-search form .search-submit {
  padding: 0.875rem 2rem;
  background: #f97316;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.privacy-page .sitemap-search form button[type="submit"]:hover,
.privacy-page .sitemap-search form .search-submit:hover,
.sitemap-page .sitemap-search form button[type="submit"]:hover,
.sitemap-page .sitemap-search form .search-submit:hover {
  background: rgba(249, 115, 22, 0.9);
}

@media (max-width: 640px) {
  .privacy-page .sitemap-search form button[type="submit"],
  .privacy-page .sitemap-search form .search-submit,
  .sitemap-page .sitemap-search form button[type="submit"],
  .sitemap-page .sitemap-search form .search-submit {
    width: 100%;
  }
}

.privacy-page .sitemap-search form button[type="submit"] i,
.privacy-page .sitemap-search form .search-submit i,
.sitemap-page .sitemap-search form button[type="submit"] i,
.sitemap-page .sitemap-search form .search-submit i {
  margin-left: 0.5rem;
}

.sitemap-section-new {
  padding: 6rem 0;
  background: #ffffff;
}

.sitemap-section-new .sitemap-grid-new {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .sitemap-section-new .sitemap-grid-new {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .sitemap-section-new .sitemap-grid-new {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

.sitemap-section-new .sitemap-card-new {
  background: #fafafa;
  border-radius: 0.75rem;
  padding: 2rem;
}

.sitemap-section-new .sitemap-card-new .sitemap-card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f97316;
}

.sitemap-section-new .sitemap-card-new .sitemap-card-header .sitemap-card-icon {
  font-size: 1.5rem;
  color: #f97316;
}

.sitemap-section-new .sitemap-card-new .sitemap-card-header .sitemap-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
}

.sitemap-section-new .sitemap-card-new .sitemap-card-list {
  list-style: none;
  padding: 0;
}

.sitemap-section-new .sitemap-card-new .sitemap-card-list li {
  margin-bottom: 0.75rem;
}

.sitemap-section-new .sitemap-card-new .sitemap-card-list li:last-child {
  margin-bottom: 0;
}

.sitemap-section-new .sitemap-card-new .sitemap-card-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  color: #000000;
  text-decoration: none;
  font-size: 0.9375rem;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.sitemap-section-new .sitemap-card-new .sitemap-card-list li a i {
  font-size: 0.625rem;
  color: #f97316;
}

.sitemap-section-new .sitemap-card-new .sitemap-card-list li a:hover {
  color: #f97316;
}

.sitemap-section-new .sitemap-recent-section {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid #e2e8f0;
}

.sitemap-section-new .sitemap-recent-section .sitemap-recent-list {
  margin-top: 2rem;
}

.sitemap-section-new .sitemap-recent-section .sitemap-recent-list .sitemap-recent-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.sitemap-section-new .sitemap-recent-section .sitemap-recent-list .sitemap-recent-item:first-child {
  padding-top: 0;
}

.sitemap-section-new .sitemap-recent-section .sitemap-recent-list .sitemap-recent-item:hover {
  opacity: 0.7;
}

.sitemap-section-new .sitemap-recent-section .sitemap-recent-list .sitemap-recent-item .sitemap-recent-date {
  font-size: 0.875rem;
  color: #000000;
  font-weight: 600;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sitemap-section-new .sitemap-recent-section .sitemap-recent-list .sitemap-recent-item .sitemap-recent-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
}

.sitemap-section-new .sitemap-recent-section .sitemap-recent-list .no-items {
  color: #000000;
  padding: 2rem;
  text-align: center;
  background: #fafafa;
  border-radius: 0.75rem;
}

.sitemap-section-new .sitemap-search-section {
  margin-top: 4rem;
}

.sitemap-section-new .sitemap-search-section .sitemap-search-content {
  background: #fafafa;
  border-radius: 0.75rem;
  padding: 3rem;
  text-align: center;
}

.sitemap-section-new .sitemap-search-section .sitemap-search-content .sitemap-search-icon {
  font-size: 2.5rem;
  color: #f97316;
  display: block;
  margin-bottom: 1rem;
}

.sitemap-section-new .sitemap-search-section .sitemap-search-content .sitemap-search-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.sitemap-section-new .sitemap-search-section .sitemap-search-content .sitemap-search-desc {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 1.5rem;
}

.sitemap-section-new .sitemap-search-section .sitemap-search-content .sitemap-search-form {
  max-width: 500px;
  margin: 0 auto;
}

.sitemap-section-new .sitemap-search-section .sitemap-search-content .sitemap-search-form .search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
}

@media (max-width: 640px) {
  .sitemap-section-new .sitemap-search-section .sitemap-search-content .sitemap-search-form .search-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.sitemap-section-new .sitemap-search-section .sitemap-search-content .sitemap-search-form .search-form input[type="search"] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0.875rem 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.sitemap-section-new .sitemap-search-section .sitemap-search-content .sitemap-search-form .search-form input[type="search"]:focus {
  outline: none;
  border-color: #f97316;
}

.sitemap-section-new .sitemap-search-section .sitemap-search-content .sitemap-search-form .search-form button[type="submit"] {
  padding: 0.875rem 1.5rem;
  background: #f97316;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
}

.sitemap-section-new .sitemap-search-section .sitemap-search-content .sitemap-search-form .search-form button[type="submit"]:hover {
  background: #ef6606;
}

.privacy-section-new {
  padding: 6rem 0;
  background: #ffffff;
}

.privacy-section-new .privacy-content-new {
  margin-top: 3rem;
}

.privacy-section-new .privacy-content-new .privacy-item-new {
  margin-bottom: 2rem;
}

.privacy-section-new .privacy-content-new .privacy-item-new:last-child {
  margin-bottom: 0;
}

.privacy-section-new .privacy-content-new .privacy-item-new .privacy-item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.privacy-section-new .privacy-content-new .privacy-item-new .privacy-item-header .privacy-item-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f97316;
}

.privacy-section-new .privacy-content-new .privacy-item-new .privacy-item-header .privacy-item-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
}

.privacy-section-new .privacy-content-new .privacy-item-new .privacy-item-content {
  padding-left: 3.5rem;
}

.privacy-section-new .privacy-content-new .privacy-item-new .privacy-item-content p {
  font-size: 1rem;
  color: #000000;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.privacy-section-new .privacy-content-new .privacy-item-new .privacy-item-content p:last-child {
  margin-bottom: 0;
}

.privacy-section-new .privacy-content-new .privacy-item-new .privacy-item-content .privacy-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.privacy-section-new .privacy-content-new .privacy-item-new .privacy-item-content .privacy-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #000000;
  line-height: 1.7;
}

.privacy-section-new .privacy-content-new .privacy-item-new .privacy-item-content .privacy-list li i {
  color: #f97316;
  margin-top: 0.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.privacy-section-new .privacy-content-new .privacy-item-new .privacy-item-content .privacy-list li:last-child {
  margin-bottom: 0;
}

.privacy-section-new .privacy-content-new .privacy-item-new .privacy-item-content .privacy-contact-box {
  background: #fafafa;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-top: 1rem;
}

.privacy-section-new .privacy-content-new .privacy-item-new .privacy-item-content .privacy-contact-box p {
  margin-bottom: 0.5rem;
}

.privacy-section-new .privacy-content-new .privacy-item-new .privacy-item-content .privacy-contact-box p i {
  color: #f97316;
  margin-right: 0.75rem;
  width: 1rem;
  text-align: center;
}

.privacy-section-new .privacy-content-new .privacy-item-new .privacy-item-content .privacy-contact-box p a {
  color: #f97316;
  text-decoration: none;
}

.privacy-section-new .privacy-content-new .privacy-item-new .privacy-item-content .privacy-contact-box p a:hover {
  text-decoration: underline;
}

.privacy-section-new .privacy-content-new .privacy-item-new .privacy-item-content .privacy-contact-box p:last-child {
  margin-bottom: 0;
}

.privacy-section-new .privacy-content-new .privacy-item-new .privacy-item-content .privacy-contact-box .privacy-contact-org {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.privacy-section-new .privacy-footer-new {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
  text-align: right;
}

.privacy-section-new .privacy-footer-new .privacy-date-new {
  font-size: 0.9375rem;
  color: #000000;
  margin-bottom: 0.25rem;
}

.privacy-section-new .privacy-footer-new .privacy-org-new {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
}
/*# sourceMappingURL=style.css.map */