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

html {
  height: 100%;
  width: 100%;
  font-family: 'Arial', sans-serif;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background-color: #f8f9fa;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

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

/* Navigation Styles */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

.nav-logo a:hover {
  opacity: 0.8;
}

.nav-logo h2 {
  color: #2c3e50;
  font-size: 24px;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 25px 20px;
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  background-color: #3498db;
  color: white;
}

/* Dropdown Styles */
.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-top: 3px solid #3498db;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 10001;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #2c3e50;
  font-size: 13px;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid #ecf0f1;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background-color: #f8f9fa;
  color: #3498db;
}

/* Mobile Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #2c3e50;
  margin: 3px 0;
  transition: 0.3s;
}

/* Main Content */
.main-content {
  margin-top: 70px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 120px 20px;
  background: 
    linear-gradient(45deg, 
      #6b73ff 0%, 
      #9d50bb 15%,
      #667eea 30%,
      #764ba2 45%,
      #89a5f7 60%,
      #a8b5ff 75%,
      #7b68ee 90%,
      #9370db 100%
    );
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(107, 115, 255, 0.2) 0%, transparent 70%),
    radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.2) 0%, transparent 70%),
    radial-gradient(circle at 40% 40%, rgba(157, 80, 187, 0.2) 0%, transparent 70%),
    radial-gradient(circle at 70% 60%, rgba(168, 181, 255, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 90% 10%, rgba(147, 112, 219, 0.15) 0%, transparent 60%);
  z-index: 1;
  animation: pulsingBubbles 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    conic-gradient(from 0deg at 50% 50%, 
      rgba(107, 115, 255, 0.05) 0deg, 
      rgba(102, 126, 234, 0.05) 60deg, 
      rgba(157, 80, 187, 0.05) 120deg, 
      rgba(168, 181, 255, 0.05) 180deg, 
      rgba(147, 112, 219, 0.05) 240deg, 
      rgba(123, 104, 238, 0.05) 300deg, 
      rgba(107, 115, 255, 0.05) 360deg);
  animation: rotate360 15s linear infinite;
  z-index: 1;
  filter: blur(2px);
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulsingBubbles {
  0%, 100% {
    transform: translateY(0px) scale(1) rotate(0deg);
    opacity: 0.8;
  }
  33% {
    transform: translateY(-30px) scale(1.2) rotate(120deg);
    opacity: 1;
  }
  66% {
    transform: translateY(-15px) scale(0.9) rotate(240deg);
    opacity: 0.9;
  }
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}



@keyframes float3D {
  0%, 100% {
    transform: translateY(0px) rotateX(0deg) rotateY(0deg);
  }
  33% {
    transform: translateY(-10px) rotateX(5deg) rotateY(2deg);
  }
  66% {
    transform: translateY(-5px) rotateX(-3deg) rotateY(-2deg);
  }
}

.hero > * {
  position: relative;
  z-index: 3;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: 
    fadeInUp 1s ease-out,
    float3D 6s ease-in-out infinite;
  transform-style: preserve-3d;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.8rem;
  margin-bottom: 35px;
  font-weight: 500;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  animation: 
    fadeInUp 1s ease-out 0.3s both,
    float3D 7s ease-in-out infinite 1s;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.hero-description {
  font-size: 1.4rem;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  animation: 
    fadeInUp 1s ease-out 0.6s both,
    float3D 8s ease-in-out infinite 2s;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.2);
  padding: 25px 35px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Floating geometric shapes */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(120, 255, 214, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 60% 70%, rgba(240, 147, 251, 0.2) 0%, transparent 40%);
  z-index: 1;
  animation: floatingBubbles 8s ease-in-out infinite;
}



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

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

/* Key Values Section */
.key-values {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.key-values h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.value-card p {
  color: #666;
  line-height: 1.6;
}

/* ESG Section */
.esg-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.esg-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.esg-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.esg-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.esg-item h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.esg-item ul {
  list-style: none;
}

.esg-item li {
  padding: 8px 0;
  position: relative;
  padding-left: 20px;
}

.esg-item li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: bold;
}

/* Social Contribution Section */
.social-contribution {
  padding: 80px 0;
  background-color: #ffffff;
}

.social-contribution h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 50px;
}

.contribution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.contribution-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 15px;
  border-left: 5px solid #3498db;
  transition: all 0.3s ease;
}

.contribution-card:hover {
  background: #3498db;
  color: white;
  transform: translateY(-3px);
}

.contribution-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.contribution-card:hover h3 {
  color: white;
}

.contribution-card p {
  line-height: 1.6;
  color: #666;
}

.contribution-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

/* Sustainability Section */
.sustainability {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.sustainability h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 50px;
}

.sustainability-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
}

.sustainability-text h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.sustainability-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 25px;
}

.sustainability-text ul {
  list-style: none;
}

.sustainability-text li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  color: #555;
}

.sustainability-text li:before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #3498db;
}

.sustainability-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stat-item h4 {
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 10px;
  font-weight: bold;
}

.stat-item p {
  color: #666;
  font-size: 1.1rem;
}

/* News Section */
.news-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.news-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 50px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.news-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  transition: all 0.3s ease;
  border-top: 4px solid #3498db;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-date {
  color: #3498db;
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.news-card h3 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.4;
}

.news-card p {
  color: #666;
  line-height: 1.6;
}

/* Page Content Styles */
.page-content {
  min-height: calc(100vh - 150px);
  width: 100%;
  display: none;
  opacity: 0;
  visibility: hidden;
  position: relative;
  z-index: 1;
  background: #ffffff;
  margin-top: 70px;
  padding: 0;
  flex: 1;
}

/* Show pages when they have inline display:block style */
.page-content[style*="display: block"] {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  z-index: 100 !important;
  width: 100% !important;
  min-height: calc(100vh - 70px) !important;
  background: #ffffff !important;
  margin-top: 70px !important;
  padding: 0 !important;
}

/* Ensure main page is visible by default */
.main-page {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  z-index: 50 !important;
  background: #ffffff !important;
  margin-top: 0 !important;
  padding: 0 !important;
  flex: 1;
  min-height: calc(100vh - 150px);
}

/* Hide main page when other pages are shown */
.main-page[style*="display: none"] {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  z-index: 1 !important;
}

/* Specific page overrides for all pages including media center */
#foundation-intro,
#our-history,
#values-goals,
#esg-overview,
#esg-direction,
#social-contribution,
#sustainability-intro,
#sustainability-activities,
#sustainability-report,
#news,
#media-events,
#stories,
#multimedia {
  position: relative;
  z-index: 1;
  background: #ffffff;
  margin-top: 70px;
  padding: 0;
  min-height: calc(100vh - 70px);
  width: 100%;
  display: none;
  opacity: 0;
  visibility: hidden;
}

/* Force visibility when pages have display:block style */
#foundation-intro[style*="display: block"],
#our-history[style*="display: block"],
#values-goals[style*="display: block"],
#esg-overview[style*="display: block"],
#esg-direction[style*="display: block"],
#social-contribution[style*="display: block"],
#sustainability-intro[style*="display: block"],
#sustainability-activities[style*="display: block"],
#sustainability-report[style*="display: block"],
#news[style*="display: block"],
#media-events[style*="display: block"],
#stories[style*="display: block"],
#multimedia[style*="display: block"] {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  z-index: 100 !important;
  width: 100% !important;
  min-height: calc(100vh - 70px) !important;
  background: #ffffff !important;
  margin-top: 70px !important;
  padding: 0 !important;
}

.page-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 100px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.content-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  min-height: 100vh;
}

/* Foundation Introduction Styles */
.intro-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

.intro-text h2 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 20px;
}

.intro-text h3 {
  color: #3498db;
  font-size: 1.4rem;
  margin: 30px 0 15px;
}

.intro-text p {
  line-height: 1.7;
  color: #666;
  margin-bottom: 15px;
}

.intro-text ul {
  list-style: none;
  padding-left: 0;
}

.intro-text li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  color: #555;
}

.intro-text li:before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #3498db;
}

.intro-stats {
  display: grid;
  gap: 20px;
}

.stat-box {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stat-box h4 {
  font-size: 2rem;
  color: #3498db;
  margin-bottom: 10px;
}

.stat-box p {
  color: #666;
  font-size: 0.9rem;
}

/* Timeline Styles */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline:before {
  content: '';
  position: absolute;
  width: 4px;
  background: #3498db;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 20px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-item:after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: #3498db;
  border: 4px solid #fff;
  top: 30px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item:nth-child(even):after {
  left: -10px;
}

.timeline-year {
  background: #3498db;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  display: inline-block;
  font-weight: bold;
  margin-bottom: 15px;
}

.timeline-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.timeline-content h3 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.timeline-content ul {
  list-style: none;
  padding-left: 0;
}

.timeline-content li {
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
  color: #666;
}

.timeline-content li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3498db;
  font-weight: bold;
}

/* Values and Goals Styles */
.values-goals-content {
  max-width: 1000px;
  margin: 0 auto;
}

.core-values, .strategic-goals {
  margin-bottom: 60px;
}

.core-values h2, .strategic-goals h2 {
  text-align: center;
  color: #2c3e50;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.values-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
}

.value-detail {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.value-icon-large {
  font-size: 4rem;
  margin-bottom: 20px;
}

.value-detail h3 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.value-detail p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.value-detail ul {
  list-style: none;
  text-align: left;
}

.value-detail li {
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
  color: #555;
}

.value-detail li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3498db;
  font-weight: bold;
}

.goals-timeline {
  display: grid;
  gap: 30px;
}

.goal-period {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #3498db;
}

.goal-period h3 {
  color: #2c3e50;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.goal-period ul {
  list-style: none;
}

.goal-period li {
  padding: 10px 0;
  position: relative;
  padding-left: 25px;
  color: #666;
  border-bottom: 1px solid #f0f0f0;
}

.goal-period li:last-child {
  border-bottom: none;
}

.goal-period li:before {
  content: "🎯";
  position: absolute;
  left: 0;
}

/* ESG Overview Styles */
#esg-overview {
  background: #ffffff;
  min-height: 100vh;
  padding-top: 20px;
  width: 100%;
  position: relative;
}

.esg-overview-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.esg-intro {
  text-align: center;
  margin-bottom: 60px;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.esg-intro h2 {
  color: #2c3e50;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.esg-intro p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #555;
  max-width: 900px;
  margin: 0 auto;
  font-weight: 500;
}

.esg-detailed {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.esg-category {
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-left: 8px solid #3498db;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 2px solid #ecf0f1;id #ecf0f1;
}

.esg-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.esg-icon {
  font-size: 4.5rem;
  margin-bottom: 25px;
  display: block;
  text-align: left;
}

.esg-category h3 {
  color: #2c3e50;
  font-size: 2.2rem;
  margin-bottom: 25px;
  font-weight: 700;
  border-bottom: 2px solid #3498db;
  padding-bottom: 15px;
}

.esg-description p {
  font-size: 1.3rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 35px;
  font-weight: 500;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #3498db;
}

.esg-details h4 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin: 35px 0 20px;
  font-weight: 600;
  background: #ecf0f1;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}

.esg-details ul {
  list-style: none;
  margin-bottom: 35px;
  background: #fdfdfd;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e3e6ea;
}

.esg-details li {
  padding: 12px 0;
  position: relative;
  padding-left: 30px;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.esg-details li:before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #3498db;
}

.achievement-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  margin-top: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;radius: 15px;
}

.achievement-stats .stat {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-top: 4px solid #3498db;
}

.achievement-stats .stat:hover {
  transform: translateY(-3px);
}

.achievement-stats .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #3498db;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.achievement-stats .label {
  color: #2c3e50;
  font-size: 1rem;
  font-weight: 600;
}

/* ESG Direction Styles */
.esg-direction-content {
  max-width: 1200px;
  margin: 0 auto;
}

.strategy-overview {
  text-align: center;
  margin-bottom: 60px;
}

.strategy-overview h2 {
  color: #2c3e50;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.strategy-overview p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.strategic-pillars {
  margin-bottom: 60px;
}

.strategic-pillars h3 {
  text-align: center;
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 40px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pillar {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.pillar:hover {
  transform: translateY(-5px);
}

.pillar-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.pillar h4 {
  color: #2c3e50;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.pillar p {
  color: #3498db;
  font-weight: 500;
  margin-bottom: 20px;
}

.pillar ul {
  list-style: none;
  text-align: left;
}

.pillar li {
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
  color: #666;
}

.pillar li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3498db;
  font-weight: bold;
}

.roadmap-section {
  margin-bottom: 60px;
}

.roadmap-section h3 {
  text-align: center;
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 40px;
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.roadmap-phase {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #3498db;
}

.phase-year {
  background: #3498db;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  display: inline-block;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.phase-content h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.phase-content ul {
  list-style: none;
}

.phase-content li {
  padding: 8px 0;
  position: relative;
  padding-left: 20px;
  color: #666;
  border-bottom: 1px solid #f0f0f0;
}

.phase-content li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3498db;
  font-weight: bold;
}

/* Shareholder Info Page Styles */
.shareholder-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.shareholders-overview {
  text-align: center;
  margin-bottom: 60px;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.shareholders-overview h2 {
  color: #2c3e50;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.shareholders-overview p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

.shareholders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  margin-top: 40px;
}

.shareholder-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.shareholder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #3498db;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.shareholder-card:hover::before {
  transform: scaleX(1);
}

.shareholder-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Senior Director - 진한 파랑 */
.shareholder-card[data-position="senior-director"] {
  border-left: 5px solid #2c3e50;
}

.shareholder-card[data-position="senior-director"]::before {
  background: #2c3e50;
}

.shareholder-card[data-position="senior-director"]:hover {
  border-color: #2c3e50;
  box-shadow: 0 25px 50px rgba(44, 62, 80, 0.2);
}

.shareholder-card[data-position="senior-director"] .position {
  color: #2c3e50 !important;
  background: rgba(44, 62, 80, 0.1);
  padding: 5px 15px;
  border-radius: 15px;
  font-weight: 600;
}

/* Director - 초록색 */
.shareholder-card[data-position="director"] {
  border-left: 5px solid #27ae60;
}

.shareholder-card[data-position="director"]::before {
  background: #27ae60;
}

.shareholder-card[data-position="director"]:hover {
  border-color: #27ae60;
  box-shadow: 0 25px 50px rgba(39, 174, 96, 0.2);
}

.shareholder-card[data-position="director"] .position {
  color: #27ae60 !important;
  background: rgba(39, 174, 96, 0.1);
  padding: 5px 15px;
  border-radius: 15px;
  font-weight: 600;
}

/* Division Director - 주황색 */
.shareholder-card[data-position="division-director"] {
  border-left: 5px solid #f39c12;
}

.shareholder-card[data-position="division-director"]::before {
  background: #f39c12;
}

.shareholder-card[data-position="division-director"]:hover {
  border-color: #f39c12;
  box-shadow: 0 25px 50px rgba(243, 156, 18, 0.2);
}

.shareholder-card[data-position="division-director"] .position {
  color: #f39c12 !important;
  background: rgba(243, 156, 18, 0.1);
  padding: 5px 15px;
  border-radius: 15px;
  font-weight: 600;
}

/* Branch Manager - 보라색 */
.shareholder-card[data-position="branch-manager"] {
  border-left: 5px solid #9b59b6;
}

.shareholder-card[data-position="branch-manager"]::before {
  background: #9b59b6;
}

.shareholder-card[data-position="branch-manager"]:hover {
  border-color: #9b59b6;
  box-shadow: 0 25px 50px rgba(155, 89, 182, 0.2);
}

.shareholder-card[data-position="branch-manager"] .position {
  color: #9b59b6 !important;
  background: rgba(155, 89, 182, 0.1);
  padding: 5px 15px;
  border-radius: 15px;
  font-weight: 600;
}

.shareholder-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f8f9fa;
  position: relative;
  transition: all 0.3s ease;
}

.shareholder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: optimizeQuality;
  image-rendering: high-quality;
  filter: contrast(1.25) saturate(1.15) brightness(1.08) sharpen(1.2);
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-filter: contrast(1.25) saturate(1.15) brightness(1.08);
  -moz-filter: contrast(1.25) saturate(1.15) brightness(1.08);
  -o-filter: contrast(1.25) saturate(1.15) brightness(1.08);
  -ms-filter: contrast(1.25) saturate(1.15) brightness(1.08);
  image-resolution: 300dpi;
  -webkit-image-rendering: -webkit-optimize-contrast;
  -moz-image-rendering: -moz-crisp-edges;
  -o-image-rendering: -o-crisp-edges;
  -ms-image-rendering: -ms-interpolation-mode: bicubic;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform-style: preserve-3d;
  will-change: transform;
}

.shareholder-card:hover .shareholder-avatar {
  border-color: #3498db;
  transform: scale(1.05);
}

.shareholder-card:hover .shareholder-avatar img {
  transform: scale(1.1);
}

.shareholder-info h3 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.shareholder-card:hover .shareholder-info h3 {
  color: #3498db;
}

.shareholder-info .position {
  color: #7f8c8d;
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link.twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
  color: white;
}

.social-link.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
  color: white;
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #e6683c;
  color: white;
}

.social-link.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
  color: white;
}

.social-link.github:hover {
  background: #333;
  border-color: #333;
  color: white;
}

.social-link.tumblr:hover {
  background: #001935;
  border-color: #001935;
  color: white;
}

.shareholder-stats {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.shareholder-stats h3 {
  text-align: center;
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 600;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 15px;
  border-left: 4px solid #3498db;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #3498db;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  color: #2c3e50;
  font-size: 1.1rem;
  font-weight: 600;
}

/* 반응형 디자인 */
@media screen and (max-width: 768px) {
  .shareholders-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }

  .shareholder-card {
    padding: 30px 20px;
  }

  .shareholder-avatar {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }

  .shareholder-info h3 {
    font-size: 1.3rem;
  }

  .social-links {
    gap: 10px;
  }

  .social-link {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .shareholders-grid {
    grid-template-columns: 1fr;
    margin-top: 25px;
  }

  .shareholders-overview {
    padding: 30px 20px;
  }

  .shareholders-overview h2 {
    font-size: 2rem;
  }

  .shareholders-overview p {
    font-size: 1.1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Governance Page Styles */
.governance-content {
  max-width: 1200px;
  margin: 0 auto;
}

.governance-overview {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  color: white;
}

.governance-overview h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.governance-overview p {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.95;
}

/* Enhanced Organization Chart */
.governance-structure {
  margin-bottom: 80px;
}

.governance-structure h3 {
  text-align: center;
  color: #2c3e50;
  font-size: 2.2rem;
  margin-bottom: 50px;
}

.org-chart-enhanced {
  position: relative;
  padding: 50px 30px;
  background: #f8f9fa;
  border-radius: 20px;
  margin-bottom: 40px;
  overflow: hidden;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.org-chart-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(52, 152, 219, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(155, 89, 182, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.org-level {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  min-height: 280px;
}

.org-level.level-1 {
  margin-bottom: 70px;
}

.org-level.level-1 .org-box {
  max-width: 550px;
  min-width: 500px;
  margin: 0 auto;
}

/* 연결선 스타일 */
.org-connector-group {
  position: relative;
  width: 100%;
  height: 40px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.connector-line {
  position: absolute;
  background: linear-gradient(90deg, #3498db 0%, #9b59b6 100%);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(52, 152, 219, 0.2);
}

.connector-line.vertical {
  width: 5px;
  height: 40px;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.connector-line.horizontal {
  height: 5px;
  width: 70%;
  left: 15%;
  top: 50%;
  transform: translateY(-50%);
}

/* 조직 박스 기본 스타일 */
.org-box {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  border: 3px solid transparent;
  backdrop-filter: blur(10px);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: visible;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

.org-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}

.org-icon {
  font-size: 2.8rem;
  margin-bottom: 15px;
  display: block;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
  flex-shrink: 0;
}

.org-box h4 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
  white-space: normal;
  padding: 0 5px;
}

.org-box p {
  margin-bottom: 15px;
  font-size: 0.95rem;
  opacity: 0.95;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  white-space: normal;
  padding: 0 5px;
}

/* 이사회 박스 */
.board-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: 3px solid #5a67d8;
  min-width: 420px;
  min-height: 320px;
  text-align: center;
  padding: 30px 25px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.board-box:hover {
  border-color: #4c51bf;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.board-box h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.01em;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  padding: 0 15px;
  text-align: center;
  width: 100%;
}

.board-box p {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  padding: 0 15px;
  text-align: center;
  width: 100%;
  margin-bottom: 15px;
}

/* 위원회 박스들 */
.committees-row {
  display: flex !important;
  justify-content: space-evenly !important;
  gap: 15px !important;
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  flex-direction: row !important;
}

.committee-box {
  color: white;
  min-height: auto;
  max-height: none;
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex: 1 !important;
  width: 32% !important;
  min-width: 320px !important;
  max-width: 400px !important;
  padding: 25px 15px;
  text-align: center;
  overflow: visible;
  word-wrap: break-word;
  word-break: break-word;
}

.committee-box h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.01em;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
  white-space: normal;
  padding: 0 8px;
  text-align: center;
}

.committee-box p {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 25px;
  opacity: 0.95;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  white-space: normal;
  padding: 0 8px;
  text-align: center;
}

.committee-box.audit {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  border-color: #e74c3c;
}

.committee-box.esg {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
  border-color: #27ae60;
}

.committee-box.risk {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  border-color: #f39c12;
}

.committee-box:hover {
  transform: translateY(-8px) scale(1.05);
}

.committee-box.audit:hover {
  box-shadow: 0 20px 40px rgba(231, 76, 60, 0.3);
}

.committee-box.esg:hover {
  box-shadow: 0 20px 40px rgba(39, 174, 96, 0.3);
}

.committee-box.risk:hover {
  box-shadow: 0 20px 40px rgba(243, 156, 18, 0.3);
}

/* 경영진 박스 */
.executive-box {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  border: 3px solid #3498db;
  min-width: 600px;
  max-width: 900px;
  margin: 0 auto;
  min-height: 380px;
  text-align: center;
  padding: 35px 25px;
  overflow: visible;
}

.executive-box:hover {
  border-color: #2980b9;
  box-shadow: 0 20px 40px rgba(52, 152, 219, 0.3);
}

.executive-box h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.01em;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  padding: 0 10px;
}

.executive-box p {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 25px;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  padding: 0 10px;
}

.executive-grid {
  display: flex !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin-top: 25px !important;
  width: 100% !important;
  flex-wrap: nowrap !important;
}

.executive-role {
  background: rgba(255, 255, 255, 0.15);
  padding: 16px 12px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
  min-height: 170px;
  max-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 1 !important;
  width: 24% !important;
  min-width: 0 !important;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-word;
}

.executive-role:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.role-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
  display: block;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.4));
  flex-shrink: 0;
}

.executive-role h5 {
  font-size: 1rem;
  margin-bottom: 6px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

.executive-role span {
  font-size: 0.85rem;
  opacity: 0.95;
  display: block;
  margin-bottom: 6px;
  line-height: 1.3;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.executive-role p {
  font-size: 0.75rem;
  opacity: 0.9;
  line-height: 1.3;
  margin: 0;
  color: #ffffff;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

/* 부서 박스들 */
.departments-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.department-box {
  color: white;
  min-height: 220px;
  max-height: 220px;
  border: 3px solid transparent;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-width: 220px;
}

.department-box h4 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #ffffff;
}

.department-box .org-icon {
  font-size: 3.5rem;
  margin-bottom: 18px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.4));
  color: #ffffff;
}

.department-box.tech {
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
  border-color: #9b59b6;
}

.department-box.social {
  background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
  border-color: #1abc9c;
}

.department-box.finance {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  border-color: #3498db;
}

.department-box.legal {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  border-color: #e67e22;
}

.department-box.esg-dept {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  border-color: #2ecc71;
}

.department-box:hover {
  transform: translateY(-5px) scale(1.03);
}

.department-box.tech:hover {
  box-shadow: 0 15px 30px rgba(155, 89, 182, 0.3);
}

.department-box.social:hover {
  box-shadow: 0 15px 30px rgba(26, 188, 156, 0.3);
}

.department-box.finance:hover {
  box-shadow: 0 15px 30px rgba(52, 152, 219, 0.3);
}

.department-box.legal:hover {
  box-shadow: 0 15px 30px rgba(230, 126, 34, 0.3);
}

.department-box.esg-dept:hover {
  box-shadow: 0 15px 30px rgba(46, 204, 113, 0.3);
}

.department-info {
  margin-top: 15px;
}

.department-info p {
  font-size: 1rem;
  margin-bottom: 10px;
  opacity: 0.95;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.department-info span {
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.25);
  padding: 5px 12px;
  border-radius: 15px;
  display: inline-block;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 세부 정보 스타일 */
.org-details,
.committee-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
  text-align: center;
  flex-grow: 1;
  min-height: 200px;
  overflow: visible;
  width: 100%;
}

.detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.25);
  padding: 15px 12px;
  border-radius: 12px;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  min-height: auto;
  margin-bottom: 8px;
  word-wrap: break-word;
  word-break: break-word;
  overflow: visible;
  text-align: center;
  width: 100%;
}

.detail-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.4));
  color: #ffffff;
  text-align: center;
  margin-bottom: 5px;
}

.detail-item span:last-child {
  font-size: 0.85rem;
  line-height: 1.6;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  width: 100%;
  white-space: normal;
  padding: 2px 0;
  max-width: none;
}

/* 조직 현황 요약 */
.org-summary {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.org-summary h4 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.summary-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 100%;
}

.summary-stat {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
  border-left: 4px solid #3498db;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.summary-stat:hover {
  transform: translateY(-3px);
  background: #e9ecef;
}

.stat-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.stat-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #3498db;
  line-height: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.3;
}

/* PC 환경에서 최대 너비 제한 */
@media screen and (min-width: 1200px) {
  .org-summary {
    max-width: 900px;
    margin: 40px auto 0 auto;
  }
  
  .summary-stats {
    grid-template-columns: repeat(4, 1fr);
    max-width: 800px;
    margin: 0 auto;
  }
}

/* 태블릿 환경 최적화 */
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .org-summary {
    padding: 25px;
    max-width: 95%;
    margin: 30px auto 0 auto;
  }
  
  .summary-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-icon {
    font-size: 2.2rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
}

/* 모바일 환경 완전 최적화 */
@media screen and (max-width: 768px) {
  .org-summary {
    padding: 25px 20px;
    margin: 30px auto 0 auto;
    border-radius: 15px;
    width: 92%;
    max-width: 92%;
  }
  
  .org-summary h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
  }
  
  .summary-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
  }
  
  .summary-stat {
    padding: 25px 15px;
    border-radius: 15px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
    min-height: 140px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
    text-align: center;
    display: block;
    width: 100%;
  }
  
  .stat-content {
    align-items: center;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .stat-number {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 8px;
    font-weight: 800;
    display: block;
    width: 100%;
  }
  
  .stat-label {
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    font-weight: 600;
    display: block;
    width: 100%;
  }
}

/* 작은 모바일 화면 (480px 이하) */
@media screen and (max-width: 480px) {
  .org-summary {
    padding: 20px 15px;
    width: 95%;
    max-width: 95%;
    margin: 25px auto 0 auto;
  }
  
  .org-summary h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
  }
  
  .summary-stats {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .summary-stat {
    padding: 25px 20px;
    min-height: 120px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .stat-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
    text-align: center;
    display: block;
    width: 100%;
    margin-bottom: 5px;
  }
  
  .stat-content {
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .stat-number {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 5px;
    font-weight: 800;
    display: block;
    width: 100%;
  }
  
  .stat-label {
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.3;
    font-weight: 600;
    display: block;
    width: 100%;
  }
}

/* Board Composition 모바일 반응형 */
@media screen and (max-width: 768px) {
  .directors-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .director-card {
    padding: 25px 20px;
  }
  
  .director-expertise {
    gap: 6px;
  }
  
  .expertise-tag {
    font-size: 0.75rem;
    padding: 4px 8px;
  }
}

/* Committees Detail 모바일 반응형 */
@media screen and (max-width: 768px) {
  .committees-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .committee-card {
    padding: 25px 20px;
  }
  
  .committee-meetings {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .committee-meetings span {
    font-size: 0.85rem;
  }
}

/* Governance Principles 모바일 반응형 */
@media screen and (max-width: 768px) {
  .principles-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .principle-item {
    padding: 25px 20px;
  }
  
  .principle-icon {
    font-size: 2.5rem;
  }
}

/* Innovation Section 모바일 반응형 */
@media screen and (max-width: 768px) {
  .governance-innovation {
    padding: 40px 20px;
  }
  
  .innovation-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature {
    padding: 12px;
    font-size: 0.9rem;
  }
}

/* Metrics Dashboard 모바일 반응형 */
@media screen and (max-width: 768px) {
  .metrics-dashboard {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .metric-card {
    padding: 25px 20px;
  }
  
  .metric-value {
    font-size: 2rem;
  }
  
  .metric-label {
    font-size: 0.9rem;
  }
  
  .metric-trend {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 480px) {
  .metrics-dashboard {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .metric-card {
    padding: 20px 15px;
  }
}

/* Roadmap Timeline 모바일 반응형 */
@media screen and (max-width: 768px) {
  .roadmap-timeline {
    padding-left: 20px;
  }
  
  .roadmap-timeline:before {
    left: 10px;
  }
  
  .timeline-item {
    padding-left: 30px;
  }
  
  .timeline-item:before {
    left: 2px;
    width: 14px;
    height: 14px;
  }
  
  .timeline-content {
    padding: 20px;
  }
  
  .timeline-content h4 {
    font-size: 1.2rem;
  }
}

/* Documents Section 모바일 반응형 */
@media screen and (max-width: 768px) {
  .documents-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .document-category {
    padding: 25px 20px;
  }
  
  .document-link {
    padding: 12px;
    gap: 12px;
  }
  
  .doc-icon {
    font-size: 1.3rem;
  }
  
  .doc-name {
    font-size: 0.9rem;
  }
  
  .doc-date {
    font-size: 0.8rem;
  }
}

/* 반응형 디자인 */
@media screen and (max-width: 1024px) {
  .departments-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .org-chart-enhanced {
    padding: 10px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }
  
  .org-level {
    margin-bottom: 40px;
    min-height: auto;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  
  /* 이사회 박스 모바일 최적화 */
  .board-box {
    min-width: 0 !important;
    max-width: 95% !important;
    width: 95% !important;
    margin: 0 auto !important;
    padding: 20px 15px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    min-height: auto !important;
    height: auto !important;
    max-height: none !important;
  }
  
  .board-box h4 {
    font-size: 1rem !important;
    margin-bottom: 12px !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    text-align: center !important;
  }
  
  .board-box p {
    font-size: 0.85rem !important;
    margin-bottom: 10px !important;
    line-height: 1.4 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    text-align: center !important;
  }
  
  /* 위원회 박스들 모바일 최적화 */
  .committees-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 10px !important;
    align-items: center !important;
    margin: 0 auto !important;
  }
  
  .committee-box {
    width: 95% !important;
    max-width: 95% !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    padding: 20px 15px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    min-height: auto !important;
    height: auto !important;
    max-height: none !important;
  }
  
  .committee-box h4 {
    font-size: 0.95rem !important;
    margin-bottom: 12px !important;
    line-height: 1.2 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    text-align: center !important;
  }
  
  .committee-box p {
    font-size: 0.8rem !important;
    margin-bottom: 15px !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    text-align: center !important;
  }
  
  .committee-details {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin-top: 15px !important;
    width: 100% !important;
    padding-bottom: 20px !important;
  }
  
  .committee-details .detail-item:last-child {
    margin-bottom: 10px !important;
  }
  
  .detail-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 12px !important;
    background: rgba(255, 255, 255, 0.3) !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 10px !important;
  }
  
  .detail-item span:last-child {
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8) !important;
    line-height: 1.2 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    text-align: left !important;
    flex: 1 !important;
  }
  
  .detail-icon {
    font-size: 0.9rem !important;
    flex-shrink: 0 !important;
    width: 20px !important;
    text-align: center !important;
  }
  
  /* 부서들 모바일 최적화 */
  .departments-row {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 95% !important;
    max-width: 95% !important;
    margin: 0 auto !important;
    padding: 10px 0 !important;
  }
  
  .department-box {
    min-height: 180px !important;
    padding: 20px 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }
  
  /* 경영진 모바일 최적화 */
  .executive-box {
    width: 95% !important;
    max-width: 95% !important;
    margin: 0 auto !important;
    padding: 20px 15px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .executive-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 20px 0 0 0 !important;
  }
  
  .executive-role {
    width: 100% !important;
    min-width: 0 !important;
    padding: 15px 10px !important;
    min-height: 120px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .executive-role h5 {
    font-size: 0.85rem !important;
    line-height: 1.2 !important;
    margin-bottom: 6px !important;
    text-align: center !important;
    word-wrap: break-word !important;
  }
  
  .executive-role span {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    margin-bottom: 6px !important;
    text-align: center !important;
    word-wrap: break-word !important;
  }
  
  .executive-role p {
    font-size: 0.7rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
    word-wrap: break-word !important;
  }
  
  .role-icon {
    font-size: 1.4rem !important;
    margin-bottom: 8px !important;
  }
  
  /* 일반 박스들 */
  .org-box {
    padding: 15px 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
  }
  
  .org-box h4 {
    font-size: 1rem !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
    text-align: center !important;
    word-wrap: break-word !important;
  }
  
  .org-box p {
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
    text-align: center !important;
    word-wrap: break-word !important;
  }
  
  .org-icon {
    font-size: 2.2rem !important;
    margin-bottom: 12px !important;
  }
  
  .summary-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
  
  /* 거버넌스 페이지 전체 섹션 모바일 최적화 */
  .governance-overview {
    padding: 20px 15px !important;
    margin-bottom: 40px !important;
  }
  
  .governance-overview h2 {
    font-size: 1.8rem !important;
    margin-bottom: 15px !important;
  }
  
  .governance-overview p {
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }
  
  .governance-structure h3 {
    font-size: 1.6rem !important;
    margin-bottom: 25px !important;
  }
  
  .governance-content {
    padding: 0 5px !important;
  }
}

@media screen and (max-width: 480px) {
  .org-chart-enhanced {
    padding: 5px !important;
    margin-bottom: 25px !important;
    width: 100% !important;
    overflow: hidden !important;
  }
  
  /* 이사회 박스 480px 최적화 */
  .board-box {
    min-width: 0 !important;
    max-width: 98% !important;
    width: 98% !important;
    margin: 0 auto !important;
    padding: 15px 10px !important;
    box-sizing: border-box !important;
    min-height: auto !important;
    height: auto !important;
    max-height: none !important;
  }
  
  .board-box h4 {
    font-size: 0.9rem !important;
    margin-bottom: 10px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    word-wrap: break-word !important;
  }
  
  .board-box p {
    font-size: 0.8rem !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
    text-align: center !important;
    word-wrap: break-word !important;
  }
  
  /* 위원회 박스들 480px 최적화 */
  .committees-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    width: 100% !important;
    padding: 0 5px !important;
    align-items: center !important;
  }
  
  .committee-box {
    width: 98% !important;
    max-width: 98% !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    padding: 15px 10px !important;
    box-sizing: border-box !important;
    min-height: auto !important;
    height: auto !important;
    max-height: none !important;
  }
  
  .committee-box h4 {
    font-size: 0.85rem !important;
    margin-bottom: 10px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    word-wrap: break-word !important;
  }
  
  .committee-box p {
    font-size: 0.75rem !important;
    margin-bottom: 12px !important;
    line-height: 1.3 !important;
    text-align: center !important;
    word-wrap: break-word !important;
  }
  
  .committee-details {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    margin-top: 12px !important;
    width: 100% !important;
    padding-bottom: 18px !important;
  }
  
  .committee-details .detail-item:last-child {
    margin-bottom: 8px !important;
  }
  
  .detail-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 10px !important;
    background: rgba(255, 255, 255, 0.25) !important;
    border-radius: 6px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 8px !important;
  }
  
  .detail-item span:last-child {
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    word-wrap: break-word !important;
    text-align: left !important;
    flex: 1 !important;
  }
  
  .detail-icon {
    font-size: 0.8rem !important;
    flex-shrink: 0 !important;
    width: 16px !important;
    text-align: center !important;
  }
  
  /* 부서들 480px 최적화 */
  .departments-row {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    width: 98% !important;
    margin: 0 auto !important;
    padding: 5px 0 !important;
  }
  
  .department-box {
    min-height: 160px !important;
    padding: 15px 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* 경영진 480px 최적화 */
  .executive-box {
    width: 98% !important;
    margin: 0 auto !important;
    padding: 15px 10px !important;
    box-sizing: border-box !important;
  }
  
  .executive-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 15px 0 0 0 !important;
  }
  
  .executive-role {
    width: 100% !important;
    padding: 12px 8px !important;
    min-height: 100px !important;
    box-sizing: border-box !important;
  }
  
  .executive-role h5 {
    font-size: 0.8rem !important;
    line-height: 1.2 !important;
    margin-bottom: 5px !important;
    text-align: center !important;
  }
  
  .executive-role span {
    font-size: 0.7rem !important;
    line-height: 1.2 !important;
    margin-bottom: 5px !important;
    text-align: center !important;
  }
  
  .executive-role p {
    font-size: 0.65rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }
  
  .role-icon {
    font-size: 1.2rem !important;
    margin-bottom: 6px !important;
  }
  
  /* 일반 설정 */
  .org-box {
    padding: 12px 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .org-box h4 {
    font-size: 0.9rem !important;
    line-height: 1.2 !important;
    margin-bottom: 8px !important;
    text-align: center !important;
  }
  
  .org-box p {
    font-size: 0.8rem !important;
    line-height: 1.3 !important;
    text-align: center !important;
  }
  
  .org-icon {
    font-size: 2rem !important;
    margin-bottom: 10px !important;
  }
  
  .summary-stats {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  
  .summary-stat {
    flex-direction: column !important;
    text-align: center !important;
    gap: 6px !important;
    padding: 12px 8px !important;
  }
  
  /* 거버넌스 페이지 전체 480px 최적화 */
  .governance-overview {
    padding: 15px 8px !important;
    margin-bottom: 30px !important;
  }
  
  .governance-overview h2 {
    font-size: 1.5rem !important;
    margin-bottom: 12px !important;
  }
  
  .governance-overview p {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
  }
  
  .governance-structure h3 {
    font-size: 1.4rem !important;
    margin-bottom: 20px !important;
  }
  
  .governance-content {
    padding: 0 3px !important;
  }
}

/* Board Composition */
.board-composition {
  margin-bottom: 80px;
}

.board-composition h3 {
  text-align: center;
  color: #2c3e50;
  font-size: 2.2rem;
  margin-bottom: 50px;
}

.directors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.director-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 5px solid #3498db;
}

.director-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.director-role {
  background: #3498db;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.director-name {
  font-size: 1.4rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 8px;
}

.director-title {
  color: #666;
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.director-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.expertise-tag {
  background: #ecf0f1;
  color: #2c3e50;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.director-tenure {
  font-size: 0.9rem;
  color: #7f8c8d;
  font-style: italic;
}

/* Committees Detail */
.committees-detail {
  margin-bottom: 80px;
}

.committees-detail h3 {
  text-align: center;
  color: #2c3e50;
  font-size: 2.2rem;
  margin-bottom: 50px;
}

.committees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.committee-card {
  background: white;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.committee-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.committee-header h4 {
  color: #2c3e50;
  font-size: 1.4rem;
  margin: 0;
}

.committee-status {
  background: #27ae60;
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.committee-composition, .committee-activities {
  margin-bottom: 20px;
}

.committee-composition h5, .committee-activities h5 {
  color: #2c3e50;
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.committee-composition ul, .committee-activities ul {
  list-style: none;
  padding: 0;
}

.committee-composition li, .committee-activities li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  color: #555;
  line-height: 1.5;
}

.committee-composition li:before {
  content: "👤";
  position: absolute;
  left: 0;
}

.committee-activities li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
}

.committee-meetings {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  color: #7f8c8d;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #ecf0f1;
}

/* Governance Principles */
.governance-principles {
  margin-bottom: 80px;
}

.governance-principles h3 {
  text-align: center;
  color: #2c3e50;
  font-size: 2.2rem;
  margin-bottom: 50px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.principle-item {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.principle-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.principle-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.principle-item h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.principle-item p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.principle-item ul {
  list-style: none;
  text-align: left;
}

.principle-item li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: #555;
}

.principle-item li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3498db;
  font-weight: bold;
}

/* Innovation Section */
.governance-innovation {
  margin-bottom: 80px;
  background: #f8f9fa;
  padding: 60px 40px;
  border-radius: 25px;
}

.governance-innovation h3 {
  text-align: center;
  color: #2c3e50;
  font-size: 2.2rem;
  margin-bottom: 50px;
}

.innovation-content {
  display: grid;
  gap: 40px;
}

.innovation-item {
  background: white;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.innovation-item h4 {
  color: #2c3e50;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.innovation-item p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.innovation-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  font-weight: 500;
  color: #2c3e50;
}

.feature-icon {
  font-size: 1.2rem;
}

/* Metrics Dashboard */
.governance-metrics {
  margin-bottom: 80px;
}

.governance-metrics h3 {
  text-align: center;
  color: #2c3e50;
  font-size: 2.2rem;
  margin-bottom: 50px;
}

.metrics-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.metric-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #3498db;
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.metric-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: #3498db;
  margin-bottom: 10px;
}

.metric-label {
  color: #2c3e50;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.metric-trend {
  font-size: 0.9rem;
  color: #27ae60;
  font-weight: 500;
}

/* Roadmap Timeline */
.governance-future {
  margin-bottom: 80px;
}

.governance-future h3 {
  text-align: center;
  color: #2c3e50;
  font-size: 2.2rem;
  margin-bottom: 50px;
}

.roadmap-timeline {
  position: relative;
  padding-left: 30px;
}

.roadmap-timeline:before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #3498db;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 40px;
}

.timeline-item:before {
  content: '';
  position: absolute;
  left: -8px;
  top: 5px;
  width: 16px;
  height: 16px;
  background: #3498db;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px #3498db;
}

.timeline-date {
  background: #3498db;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.timeline-content {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.timeline-content h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.timeline-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.timeline-status {
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
}

.timeline-status.completed {
  background: #27ae60;
  color: white;
}

.timeline-status.in-progress {
  background: #f39c12;
  color: white;
}

.timeline-status.planned {
  background: #95a5a6;
  color: white;
}

/* Documents Section */
.governance-documents h3 {
  text-align: center;
  color: #2c3e50;
  font-size: 2.2rem;
  margin-bottom: 50px;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.document-category {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.document-category h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #ecf0f1;
}

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

.document-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  text-decoration: none;
  color: #2c3e50;
  transition: all 0.3s ease;
}

.document-link:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.doc-icon {
  font-size: 1.5rem;
}

.doc-name {
  flex: 1;
  font-weight: 500;
}

.doc-date {
  font-size: 0.9rem;
  color: #7f8c8d;
}

/* Responsive Design */
@media (max-width: 768px) {
  .governance-overview {
    padding: 30px 20px;
  }
  
  .governance-overview h2 {
    font-size: 2rem;
  }
  
  .directors-grid {
    grid-template-columns: 1fr;
  }
  
  .committees-grid {
    grid-template-columns: 1fr;
  }
  
  .metrics-dashboard {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .documents-grid {
    grid-template-columns: 1fr;
  }
  
  .innovation-features {
    grid-template-columns: 1fr;
  }
  
  .committee-meetings {
    flex-direction: column;
    gap: 10px;
  }
}

.implementation-framework h3 {
  text-align: center;
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 40px;
}

.framework-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.governance-structure,
.management-process {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.governance-structure h4,
.management-process h4 {
  color: #2c3e50;
  font-size: 1.4rem;
  margin-bottom: 30px;
  text-align: center;
}

.org-chart {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.org-level {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.org-box {
  background: #3498db;
  color: white;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  min-width: 120px;
}

.process-steps {
  display: grid;
  gap: 20px;
}

.step {
  display: flex;
  align-items: center;
  gap: 20px;
}

.step-number {
  background: #3498db;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h5 {
  color: #2c3e50;
  margin-bottom: 5px;
}

.step-content p {
  color: #666;
  font-size: 0.9rem;
}

/* Sustainability Activities Styles */
#sustainability-activities {
  background: #ffffff;
  min-height: 100vh;
  padding-top: 20px;
  width: 100%;
  position: relative;
}

.sustainability-activities-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.activities-overview {
  text-align: center;
  margin-bottom: 60px;
}

.activities-overview h2 {
  color: #2c3e50;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.activities-overview p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.activities-categories {
  margin-bottom: 80px;
}

.activity-category {
  margin-bottom: 60px;
  background: #f8f9fa;
  border-radius: 20px;
  padding: 40px;
}

.category-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.category-icon {
  font-size: 3rem;
  margin-right: 20px;
}

.category-header h3 {
  color: #2c3e50;
  font-size: 2rem;
  font-weight: 600;
}

.activity-items {
  display: grid;
  gap: 30px;
}

.activity-item {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.activity-item h4 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.activity-description p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.activity-description ul {
  list-style: none;
  margin-bottom: 25px;
}

.activity-description li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  color: #555;
}

.activity-description li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3498db;
  font-weight: bold;
}

.activity-metrics {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.metric {
  text-align: center;
  min-width: 120px;
}

.metric-value {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #3498db;
  margin-bottom: 5px;
}

.metric-label {
  font-size: 0.9rem;
  color: #666;
}

.annual-performance {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 40px;
}

.annual-performance h3 {
  text-align: center;
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 40px;
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.performance-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.performance-card:hover {
  transform: translateY(-5px);
}

.performance-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.performance-card h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.performance-card p {
  color: #666;
  line-height: 1.5;
}

/* Sustainability Report Styles */
#sustainability-report {
  background: #ffffff;
  min-height: 100vh;
  padding-top: 20px;
  width: 100%;
  position: relative;
}

.sustainability-report-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.report-overview {
  text-align: center;
  margin-bottom: 60px;
}

.report-overview h2 {
  color: #2c3e50;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.report-overview p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.latest-report {
  margin-bottom: 80px;
}

.latest-report h3 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

.report-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #f8f9fa;
  border-radius: 20px;
  padding: 40px;
}

.report-cover {
  display: flex;
  gap: 20px;
  align-items: center;
}

.cover-image {
  font-size: 4rem;
  width: 120px;
  height: 160px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: white;
  flex-shrink: 0;
}

.cover-info {
  flex: 1;
  min-width: 0;
}

.cover-info h4 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.cover-info p {
  color: #666;
  margin-bottom: 10px;
  font-size: 1rem;
}

.download-buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-download {
  background: #3498db;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.3s ease;
  white-space: nowrap;
  flex: 1;
  min-width: 120px;
}

.btn-download:hover {
  background: #2980b9;
}

.report-summary h4 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.highlight-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.highlight-stat {
  text-align: center;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.highlight-stat .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #3498db;
  margin-bottom: 5px;
}

.highlight-stat .stat-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.3;
}

/* 모바일 반응형 스타일 */
@media screen and (max-width: 768px) {
  .report-overview h2 {
    font-size: 2rem;
  }
  
  .report-overview p {
    font-size: 1.1rem;
    padding: 0 10px;
  }
  
  .latest-report h3 {
    font-size: 1.8rem;
  }
  
  .report-highlight {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px;
    border-radius: 15px;
  }
  
  .report-cover {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .cover-image {
    width: 100px;
    height: 130px;
    font-size: 3rem;
    margin: 0 auto;
  }
  
  .cover-info {
    width: 100%;
  }
  
  .cover-info h4 {
    font-size: 1.3rem;
    text-align: center;
  }
  
  .cover-info p {
    text-align: center;
    font-size: 0.95rem;
  }
  
  .download-buttons {
    justify-content: center;
    gap: 8px;
  }
  
  .btn-download {
    padding: 12px 16px;
    font-size: 0.85rem;
    min-width: 100px;
    flex: 0 1 auto;
  }
  
  .report-summary {
    margin-top: 30px;
  }
  
  .report-summary h4 {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 25px;
  }
  
  .highlight-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .highlight-stat {
    padding: 25px 20px;
  }
  
  .highlight-stat .stat-number {
    font-size: 2.5rem;
  }
  
  .highlight-stat .stat-desc {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .sustainability-report-content {
    padding: 0 15px;
  }
  
  .report-overview {
    margin-bottom: 40px;
  }
  
  .report-overview h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .report-overview p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .latest-report {
    margin-bottom: 60px;
  }
  
  .latest-report h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
  
  .report-highlight {
    padding: 25px 15px;
    gap: 25px;
  }
  
  .cover-image {
    width: 80px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .cover-info h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .cover-info p {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
  
  .download-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  
  .btn-download {
    padding: 14px 20px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 200px;
  }
  
  .report-summary h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .highlight-stat {
    padding: 20px 15px;
  }
  
  .highlight-stat .stat-number {
    font-size: 2.2rem;
  }
  
  .highlight-stat .stat-desc {
    font-size: 0.95rem;
  }
}

.report-contents {
  margin-bottom: 80px;
}

.report-contents h3 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

.contents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.content-section-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.content-section-card:hover {
  transform: translateY(-5px);
}

.section-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.content-section-card h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.content-section-card ul {
  list-style: none;
}

.content-section-card li {
  padding: 8px 0;
  position: relative;
  padding-left: 20px;
  color: #666;
}

.content-section-card li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3498db;
  font-weight: bold;
}

.historical-reports {
  margin-bottom: 80px;
}

.historical-reports h3 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

.reports-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.report-year {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  align-items: center;
  background: #f8f9fa;
  border-radius: 15px;
  padding: 30px;
}

.year {
  background: #3498db;
  color: white;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  font-size: 1.5rem;
  font-weight: bold;
}

.report-info h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.report-info p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

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

.report-link {
  color: #3498db;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 5px 10px;
  border: 1px solid #3498db;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.report-link:hover {
  background: #3498db;
  color: white;
}

.reporting-standards {
  margin-bottom: 80px;
}

.reporting-standards h3 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.standard-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.standard-card:hover {
  transform: translateY(-5px);
}

.standard-logo {
  font-size: 2rem;
  font-weight: bold;
  color: #3498db;
  margin-bottom: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  display: inline-block;
}

.standard-card h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.standard-card p {
  color: #666;
  line-height: 1.5;
  font-size: 0.95rem;
}

.assurance-verification {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 40px;
}

.assurance-verification h3 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

.verification-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.verification-info h4 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.verification-info p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.verification-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.verification-item {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  color: #555;
}

.verification-certificate {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.certificate-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.verification-certificate h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.verification-certificate p {
  color: #666;
  margin-bottom: 20px;
}

.btn-certificate {
  background: #27ae60;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.btn-certificate:hover {
  background: #229954;
}

/* Sustainability Introduction Styles */
#sustainability-intro {
  background: #ffffff;
  min-height: 100vh;
  padding-top: 20px;
  width: 100%;
  position: relative;
}

.sustainability-intro-content {
  max-width: 1200px;
  margin: 0 auto;
}

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

.intro-overview h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 30px;
}

.intro-overview p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.approach-item {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  border-left: 5px solid #3498db;
}

.approach-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.approach-item h4 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.approach-item p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.approach-item ul {
  list-style: none;
  padding: 0;
}

.approach-item li {
  padding: 5px 0;
  color: #3498db;
  position: relative;
  padding-left: 20px;
}

.approach-item li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #3498db;
}

.principles-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.principle-column {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 40px;
  border-radius: 15px;
}

.principle-column h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.principle-column p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.principle-column ul {
  list-style: none;
  padding: 0;
}

.principle-column li {
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
}

.principle-column li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4CAF50;
}

.framework-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto auto;
  gap: 40px;
  margin-bottom: 60px;
  padding: 50px 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-items: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.framework-center {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 45px;
  border-radius: 50%;
  text-align: center;
  width: 250px;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
  grid-column: 2;
  grid-row: 2;
  position: relative;
  z-index: 10;
}

.framework-center::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

.framework-center h4 {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.framework-elements {
  display: contents;
}

.framework-element {
  background: white;
  padding: 35px 30px;
  border-radius: 20px;
  text-align: center;
  width: 280px;
  min-height: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.framework-element:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: #3498db;
}

.framework-element.environment {
  grid-column: 1;
  grid-row: 1;
  border-top: 5px solid #27ae60;
}

.framework-element.social {
  grid-column: 3;
  grid-row: 1;
  border-top: 5px solid #e74c3c;
}

.framework-element.governance {
  grid-column: 2;
  grid-row: 3;
  border-top: 5px solid #f39c12;
}

.element-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.framework-element h5 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.framework-element p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  max-width: 200px;
}

/* 연결선 추가 */
.framework-visual::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border: 3px dashed #3498db;
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

/* 반응형 디자인 */
@media screen and (max-width: 1024px) {
  .framework-visual {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 30px;
    padding: 40px 30px;
    max-width: 600px;
  }
  
  .framework-center {
    grid-column: 1;
    grid-row: 2;
    width: 220px;
    height: 220px;
    padding: 35px;
  }
  
  .framework-element.environment {
    grid-column: 1;
    grid-row: 1;
  }
  
  .framework-element.social {
    grid-column: 1;
    grid-row: 3;
  }
  
  .framework-element.governance {
    grid-column: 1;
    grid-row: 4;
  }
  
  .framework-element {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .framework-visual::after {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .framework-center {
    width: 200px;
    height: 200px;
    padding: 30px;
  }
  
  .framework-center h4 {
    font-size: 1.3rem;
  }
  
  .framework-element {
    padding: 30px 25px;
    min-height: 200px;
  }
  
  .element-icon {
    font-size: 3rem;
  }
  
  .framework-element h5 {
    font-size: 1.3rem;
  }
  
  .framework-element p {
    font-size: 0.95rem;
  }
}

.commitment-content {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
}

.commitment-content blockquote {
  font-size: 1.3rem;
  font-style: italic;
  color: #2c3e50;
  line-height: 1.6;
  margin-bottom: 20px;
  border-left: 4px solid #3498db;
  padding-left: 20px;
}

.commitment-signature {
  color: #666;
  font-weight: 500;
}

/* Enhanced Social Contribution Styles */
#social-contribution {
  background: #ffffff;
  min-height: 100vh;
  padding-top: 20px;
  width: 100%;
  position: relative;
}

.social-contribution-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.contribution-philosophy {
  text-align: center;
  margin-bottom: 60px;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contribution-philosophy h2 {
  color: #2c3e50;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.contribution-philosophy p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #555;
  font-weight: 500;
}

.contribution-areas {
  margin-bottom: 60px;
}

.contribution-areas h3 {
  text-align: center;
  color: #2c3e50;
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: 600;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.area-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #3498db;
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.area-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
}

.area-card h4 {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.area-content p {
  color: #555;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 25px;
  font-weight: 500;
}

.area-content h5 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin: 25px 0 15px;
  font-weight: 600;
}

.area-content ul {
  list-style: none;
  margin-bottom: 25px;
}

.area-content li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
}

.area-content li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3498db;
  font-weight: bold;
  font-size: 1.2rem;
}

.area-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.area-stat {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border-top: 3px solid #3498db;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  color: #3498db;
  margin-bottom: 5px;
}

.stat-label {
  color: #2c3e50;
  font-size: 0.9rem;
  font-weight: 500;
}

.global-impact {
  margin-bottom: 60px;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.global-impact h3 {
  color: #2c3e50;
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.impact-content {
  display: grid;
  gap: 40px;
}

.impact-map h4 {
  color: #2c3e50;
  font-size: 1.6rem;
  margin-bottom: 30px;
  text-align: center;
}

.regions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.region {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #3498db;
}

.region h5 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.region ul {
  list-style: none;
  margin-bottom: 15px;
}

.region li {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

.annual-achievements h4 {
  color: #2c3e50;
  font-size: 1.6rem;
  margin-bottom: 30px;
  text-align: center;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.achievement {
  background: #f8f9fa;
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  border-top: 4px solid #3498db;
}

.achievement-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.achievement h5 {
  color: #2c3e50;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.achievement p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

.future-plans {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.future-plans h3 {
  color: #2c3e50;
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.plans-timeline {
  display: grid;
  gap: 30px;
}

.plan-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  align-items: start;
}

.plan-year {
  background: #3498db;
  color: white;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  font-size: 1.5rem;
  font-weight: bold;
}

.plan-content {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid #3498db;
}

.plan-content h4 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.plan-content ul {
  list-style: none;
}

.plan-content li {
  padding: 10px 0;
  position: relative;
  padding-left: 25px;
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

.plan-content li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #3498db;
  font-weight: bold;
}gin-bottom: 20px;
}

.contribution-philosophy p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.contribution-areas {
  margin-bottom: 60px;
}

.contribution-areas h3 {
  text-align: center;
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 40px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
}

.area-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.area-card:hover {
  transform: translateY(-5px);
}

.area-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.area-card h4 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.area-content p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.area-content h5 {
  color: #3498db;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.area-content ul {
  list-style: none;
  margin-bottom: 25px;
}

.area-content li {
  padding: 6px 0;
  position: relative;
  padding-left: 20px;
  color: #555;
}

.area-content li:before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #3498db;
}

.area-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.area-stat {
  text-align: center;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #3498db;
  margin-bottom: 5px;
}

.stat-label {
  color: #666;
  font-size: 0.85rem;
}

.global-impact {
  margin-bottom: 60px;
}

.global-impact h3 {
  text-align: center;
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 40px;
}

.impact-content {
  display: grid;
  gap: 40px;
}

.impact-map {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.impact-map h4 {
  color: #2c3e50;
  font-size: 1.4rem;
  margin-bottom: 30px;
  text-align: center;
}

.regions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.region h5 {
  color: #3498db;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.region ul {
  list-style: none;
}

.region li {
  padding: 5px 0;
  color: #666;
  line-height: 1.5;
}

.annual-achievements {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.annual-achievements h4 {
  color: #2c3e50;
  font-size: 1.4rem;
  margin-bottom: 30px;
  text-align: center;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.achievement {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.achievement-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.achievement h5 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.achievement p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.future-plans h3 {
  text-align: center;
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 40px;
}

.plans-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.plan-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #3498db;
}

.plan-year {
  background: #3498db;
  color: white;
  padding: 8px 16px;
  border-radius: 15px;
  display: inline-block;
  font-weight: bold;
  margin-bottom: 15px;
}

.plan-content h4 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.plan-content ul {
  list-style: none;
}

.plan-content li {
  padding: 8px 0;
  position: relative;
  padding-left: 20px;
  color: #666;
}

.plan-content li:before {
  content: "🎯";
  position: absolute;
  left: 0;
}

/* Media Center Pages Styles */
#news, #media-events, #stories, #multimedia {
  background: #ffffff;
  min-height: calc(100vh - 70px);
  padding: 0;
  width: 100%;
  position: relative;
  margin-top: 70px;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Ensure all page content is visible */
.news-content,
.media-events-content,
.stories-content,
.multimedia-content {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  width: 100%;
  min-height: calc(100vh - 110px);
  background: #ffffff;
}

/* Make sure news content shows properly */
#news .news-content {
  padding-top: 40px;
}

#media-events .media-events-content {
  padding-top: 40px;
}

#stories .stories-content {
  padding-top: 40px;
}

#multimedia .multimedia-content {
  padding-top: 40px;
}

/* News Page Styles */
#news {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  background: #ffffff !important;
  min-height: 100vh !important;
  margin-top: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  position: fixed !important;
  top: 70px !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 1 !important;
  overflow-y: auto !important;
}

#news.active,
#news[style*="display: block"] {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 9999 !important;
  background: #ffffff !important;
  margin-top: 70px !important;
  padding: 0 !important;
  width: 100% !important;
  min-height: calc(100vh - 70px) !important;
  overflow-y: auto !important;
}

.news-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #ffffff;
  min-height: calc(100vh - 110px);
  width: 100%;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#news.active .news-content,
#news[style*="display: block"] .news-content {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  padding: 40px 20px !important;
  background: #ffffff !important;
}

/* 뉴스 페이지 내 모든 요소 강제 표시 */
#news.active *,
#news[style*="display: block"] * {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* 인라인 요소들은 inline으로 표시 */
#news.active span,
#news[style*="display: block"] span,
#news.active .filter-btn,
#news[style*="display: block"] .filter-btn,
#news.active .pagination-btn,
#news[style*="display: block"] .pagination-btn {
  display: inline-block !important;
}

/* 플렉스 컨테이너 요소들 */
#news.active .category-filters,
#news[style*="display: block"] .category-filters,
#news.active .pagination,
#news[style*="display: block"] .pagination,
#news.active .news-meta,
#news[style*="display: block"] .news-meta,
#news.active .news-actions,
#news[style*="display: block"] .news-actions {
  display: flex !important;
}

.news-categories h3 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.category-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  padding: 15px 0;
}

.filter-btn {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  color: #6c757d;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: none;
  position: relative;
  min-width: 80px;
  text-align: center;
}

.filter-btn:hover {
  background: #e9ecef;
  border-color: #adb5bd;
  color: #495057;
  transform: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
  background: #3498db;
  border-color: #3498db;
  color: white;
  transform: none;
  box-shadow: 0 2px 4px rgba(52, 152, 219, 0.2);
}

.filter-btn.active:hover {
  background: #2980b9;
  border-color: #2980b9;
  transform: none;
  box-shadow: 0 2px 4px rgba(41, 128, 185, 0.3);
}

.featured-news {
  margin-bottom: 60px;
}

.featured-news h3 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

.featured-article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #3498db;
}

.featured-image {
  font-size: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 10px;
  height: 150px;
}

.news-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  align-items: center;
}

.news-date {
  color: #3498db;
  font-weight: 600;
  background: #f8f9fa;
  padding: 5px 15px;
  border-radius: 15px;
}

.news-category {
  background: #3498db;
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.9rem;
}

.featured-content h2 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.news-excerpt {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.news-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  background: #ecf0f1;
  color: #2c3e50;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
}

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

.news-list h3 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

.news-articles {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
}

.news-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.news-item:hover {
  transform: translateY(-3px);
}

.news-thumbnail {
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 10px;
  height: 80px;
}

.news-info h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-info p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.news-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.read-more {
  background: #3498db;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.read-more:hover {
  background: #2980b9;
}

.views {
  color: #999;
  font-size: 0.9rem;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 40px;
  padding: 20px 0;
}

.pagination-btn {
  background: #ffffff;
  border: 1px solid #dee2e6;
  color: #6c757d;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 0.9rem;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.pagination-btn:hover {
  background: #f8f9fa;
  border-color: #adb5bd;
  color: #495057;
  transform: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pagination-btn.active {
  background: #3498db;
  border-color: #3498db;
  color: white;
  transform: none;
  box-shadow: none;
  font-weight: 600;
}

.pagination-btn.active:hover {
  background: #2980b9;
  border-color: #2980b9;
  transform: none;
  box-shadow: none;
}

/* 이전/다음 버튼 스타일 */
.pagination-btn:first-child,
.pagination-btn:last-child {
  padding: 10px 16px;
  font-weight: 500;
  background: #f8f9fa;
  color: #6c757d;
  border-color: #dee2e6;
}

.pagination-btn:first-child:hover,
.pagination-btn:last-child:hover {
  background: #e9ecef;
  color: #495057;
  border-color: #adb5bd;
}

/* 반응형 디자인 */
@media screen and (max-width: 480px) {
  .pagination {
    gap: 4px;
    flex-wrap: wrap;
  }
  
  .pagination-btn {
    min-width: 40px;
    height: 40px;
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  
  .pagination-btn:first-child,
  .pagination-btn:last-child {
    padding: 10px 16px;
  }
}

.newsletter-signup {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
}

.newsletter-signup h3 {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.newsletter-signup p {
  color: #666;
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.newsletter-btn {
  background: #3498db;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.newsletter-btn:hover {
  background: #2980b9;
}

/* Media Events Page Styles */
.media-events-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: #ffffff;
  min-height: calc(100vh - 110px);
}

.upcoming-events {
  margin-bottom: 80px;
  background: #f8f9fa;
  border-radius: 20px;
  padding: 40px;
}

.upcoming-events h3 {
  color: #2c3e50;
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
}

.events-calendar {
  display: grid;
  gap: 40px;
}

.event-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #f0f0f0;
  overflow: hidden;
  word-wrap: break-word;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.event-card.upcoming {
  border-left: 6px solid #27ae60;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.event-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.event-date {
  text-align: center;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  border-radius: 15px;
  padding: 25px 20px;
  height: fit-content;
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
  min-width: 120px;
  flex-shrink: 0;
}

.month {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.day {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 900;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.event-header-info {
  min-width: 0;
  overflow: hidden;
}

.event-type {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.event-info {
  min-width: 0;
  overflow: hidden;
}

.event-info h4 {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.event-description {
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1.1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.event-details {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.event-details span {
  background: #ecf0f1;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 0.95rem;
  color: #2c3e50;
  font-weight: 600;
  border: 1px solid #ddd;
  white-space: nowrap;
  flex-shrink: 0;
}

.event-speakers {
  margin-bottom: 25px;
}

.event-speakers h5 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 600;
}

.speakers {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.speaker {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 3px 8px rgba(231, 76, 60, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
}

.event-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.register-btn,
.info-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  flex-shrink: 0;
}

.register-btn {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
  color: white;
}

.register-btn:hover {
  background: linear-gradient(135deg, #229954 0%, #1e8449 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(39, 174, 96, 0.3);
}

.info-btn {
  background: #ffffff;
  color: #3498db;
  border: 2px solid #3498db;
}

.info-btn:hover {
  background: #3498db;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(52, 152, 219, 0.3);
}

/* 모바일 반응형 개선 */
@media screen and (max-width: 768px) {
  .media-events-content {
    padding: 20px 15px;
  }
  
  .upcoming-events {
    padding: 25px 20px;
    margin-bottom: 60px;
  }
  
  .upcoming-events h3 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .events-calendar {
    gap: 30px;
  }
  
  .event-card {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 25px 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .event-header {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    align-items: start;
  }
  
  .event-date {
    padding: 20px 15px;
    min-width: 100px;
    max-width: 100px;
  }
  
  .month {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }
  
  .day {
    font-size: 2.2rem;
  }
  
  .event-header-info {
    min-width: 0;
  }
  
  .event-type {
    font-size: 0.9rem;
    padding: 6px 16px;
    margin-bottom: 15px;
    max-width: 100%;
    word-wrap: break-word;
    white-space: normal;
  }
  
  .event-info h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .event-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .event-details {
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .event-details span {
    font-size: 0.85rem;
    padding: 8px 12px;
    flex: 1;
    min-width: 0;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .event-speakers h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  
  .speakers {
    gap: 8px;
    margin-bottom: 20px;
  }
  
  .speaker {
    font-size: 0.8rem;
    padding: 6px 12px;
    flex: 1;
    min-width: 0;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .event-actions {
    gap: 15px;
    flex-direction: column;
  }
  
  .register-btn,
  .info-btn {
    padding: 14px 20px;
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .media-events-content {
    padding: 15px 10px;
  }
  
  .upcoming-events {
    padding: 20px 15px;
    border-radius: 15px;
  }
  
  .upcoming-events h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  
  .event-card {
    padding: 20px 15px;
    border-radius: 15px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .event-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .event-date {
    padding: 15px 12px;
    margin: 0 auto;
    max-width: 90px;
    min-width: 90px;
  }
  
  .month {
    font-size: 1rem;
    margin-bottom: 4px;
  }
  
  .day {
    font-size: 2rem;
  }
  
  .event-type {
    font-size: 0.85rem;
    padding: 6px 14px;
    margin-bottom: 12px;
    display: block;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
  }
  
  .event-info h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .event-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 18px;
    text-align: center;
  }
  
  .event-details {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
  }
  
  .event-details span {
    font-size: 0.8rem;
    padding: 8px 10px;
    width: 100%;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
  }
  
  .speakers {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
  }
  
  .speaker {
    font-size: 0.75rem;
    padding: 8px 12px;
    width: 100%;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
  }
  
  .event-actions {
    gap: 12px;
  }
  
  .register-btn,
  .info-btn {
    padding: 16px 20px;
    font-size: 0.95rem;
    border-radius: 10px;
  }
}

/* Past Events Styling */
.past-events {
  margin-bottom: 80px;
}

.past-events h3 {
  color: #2c3e50;
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
}

.past-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.past-event-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-left: 4px solid #3498db;
}

.past-event-card:hover {
  transform: translateY(-5px);
}

.event-image {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.past-event-info h4 {
  color: #2c3e50;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.past-event-date {
  color: #3498db;
  font-weight: 600;
  margin-bottom: 10px;
}

.past-event-info p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.past-event-stats {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.past-event-stats span {
  background: #f8f9fa;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  color: #666;
}

.past-event-actions {
  display: flex;
  gap: 15px;
}

.watch-replay,
.download-materials {
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.watch-replay {
  background: #e74c3c;
  color: white;
}

.watch-replay:hover {
  background: #c0392b;
}

.download-materials {
  background: #f8f9fa;
  color: #3498db;
  border: 2px solid #3498db;
}

.download-materials:hover {
  background: #3498db;
  color: white;
}

.media-resources {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 40px;
}

.media-resources h3 {
  color: #2c3e50;
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.resource-category {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.resource-category h4 {
  color: #2c3e50;
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.resource-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.resource-item {
  color: #3498db;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.resource-item:hover {
  background: #3498db;
  color: white;
  transform: translateX(5px);
}

/* Stories Page Styles */
.stories-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.featured-story {
  margin-bottom: 60px;
}

.story-hero {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
}

.story-image {
  font-size: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 10px;
  height: 150px;
}

.story-category {
  background: #3498db;
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 15px;
}

.story-content h2 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.story-excerpt {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.story-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.story-date,
.story-location,
.story-impact {
  background: #f8f9fa;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.9rem;
  color: #666;
}

.read-full-story {
  background: #3498db;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.read-full-story:hover {
  background: #2980b9;
}

.story-categories {
  margin-bottom: 40px;
}

.story-categories h3 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.category-tab {
  background: #f8f9fa;
  border: 2px solid #3498db;
  color: #3498db;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.category-tab.active,
.category-tab:hover {
  background: #3498db;
  color: white;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.story-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
}

.story-card:hover {
  transform: translateY(-5px);
}

.story-thumbnail {
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 10px;
  height: 80px;
}

.story-info {
  display: flex;
  flex-direction: column;
}

.story-label {
  background: #3498db;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 10px;
  width: fit-content;
}

.story-info h3 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.story-info p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.story-stats {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.story-stats span {
  background: #f8f9fa;
  padding: 4px 8px;
  border-radius: 10px;
  font-size: 0.8rem;
  color: #666;
}

.story-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.read-story {
  background: #3498db;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.read-story:hover {
  background: #2980b9;
}

.story-views {
  color: #999;
  font-size: 0.9rem;
}

.impact-numbers {
  margin-bottom: 60px;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.impact-numbers h3 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.impact-stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  color: #3498db;
  margin-bottom: 10px;
}

.stat-label {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.4;
}

.share-story {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.share-story h3 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 20px;
}

.share-story p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.story-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.submit-story-btn {
  background: #3498db;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 500;
  transition: background 0.3s ease;
}

.submit-story-btn:hover {
  background: #2980b9;
}

.form-note {
  color: #999;
  font-size: 0.9rem;
}

/* Multimedia Page Styles */
.multimedia-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.content-types {
  margin-bottom: 40px;
}

.type-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.type-filter {
  background: #f8f9fa;
  border: 2px solid #3498db;
  color: #3498db;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.type-filter.active,
.type-filter:hover {
  background: #3498db;
  color: white;
}

.featured-video {
  margin-bottom: 60px;
}

.featured-video h3 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

.video-player {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
}

.video-thumbnail {
  font-size: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 10px;
  height: 150px;
}

.video-info h4 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.video-info p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.video-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.video-meta span {
  background: #f8f9fa;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.9rem;
  color: #666;
}

.video-actions {
  display: flex;
  gap: 15px;
}

.play-btn,
.download-btn,
.share-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.play-btn {
  background: #e74c3c;
  color: white;
}

.play-btn:hover {
  background: #c0392b;
}

.download-btn {
  background: #f8f9fa;
  color: #3498db;
  border: 2px solid #3498db;
}

.download-btn:hover {
  background: #3498db;
  color: white;
}

.share-btn {
  background: #f39c12;
  color: white;
}

.share-btn:hover {
  background: #d68910;
}

/* Multimedia Gallery Styles */
.multimedia-gallery {
  margin-bottom: 60px;
}

.multimedia-gallery h3,
.image-gallery h3,
.infographics-section h3,
.interactive-content h3,
.podcast-section h3,
.download-center h3 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.image-gallery,
.infographics-section,
.interactive-content,
.podcast-section,
.download-center {
  margin-bottom: 60px;
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
}

.media-item {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  border-left: 4px solid #3498db;
}

.media-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.media-thumbnail {
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 10px;
  height: 80px;
  width: 80px;
}

.media-info h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 600;
}

.media-info p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.media-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.media-meta span {
  background: #f8f9fa;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  color: #666;
  border: 1px solid #e9ecef;
}

.media-btn {
  background: #3498db;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-weight: 500;
  width: fit-content;
}

.media-btn:hover {
  background: #2980b9;
}

/* Media Statistics Styles */
.media-statistics {
  margin-bottom: 60px;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.media-statistics h3 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-card {
  text-align: center;
  background: #f8f9fa;
  padding: 30px 20px;
  border-radius: 15px;
  transition: transform 0.3s ease;
  border-top: 4px solid #3498db;
}

.stat-card:hover {
  transform: translateY(-3px);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #3498db;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  color: #2c3e50;
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.stat-detail {
  color: #666;
  font-size: 0.9rem;
}

/* Infographics Section Styles */
.infographics-section {
  margin-bottom: 60px;
}

.infographics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.infographic-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  border-left: 4px solid #3498db;
}

.infographic-card:hover {
  transform: translateY(-5px);
}

.infographic-thumb {
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 10px;
  height: 80px;
  width: 80px;
}

.infographic-info h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 600;
}

.infographic-info p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.infographic-meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.infographic-meta span {
  background: #f8f9fa;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  color: #666;
  border: 1px solid #e9ecef;
}

/* Interactive Content Styles */
.interactive-content {
  margin-bottom: 60px;
}

.interactive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.interactive-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
  border-top: 4px solid #3498db;
}

.interactive-card:hover {
  transform: translateY(-5px);
}

.interactive-thumb {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
}

.interactive-info h4 {
  color: #2c3e50;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.interactive-info p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.interactive-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 25px;
}

.interactive-features span {
  background: #f8f9fa;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  color: #666;
  border: 1px solid #e9ecef;
}

.try-interactive {
  background: #3498db;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.try-interactive:hover {
  background: #2980b9;
}

/* Podcast Section Styles */
.podcast-section {
  margin-bottom: 60px;
}

.podcast-player {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.podcast-cover {
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 15px;
  height: 120px;
}

.podcast-info h4 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.podcast-info p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.podcast-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.podcast-meta span {
  background: #f8f9fa;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.9rem;
  color: #666;
}

.podcast-platforms {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.platform-btn {
  background: #f8f9fa;
  border: 2px solid #3498db;
  color: #3498db;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.platform-btn:hover {
  background: #3498db;
  color: white;
}

.latest-episodes h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.episodes-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.episode-item {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  gap: 15px;
  align-items: center;
}

.episode-number {
  background: #3498db;
  color: white;
  padding: 10px;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
}

.episode-content h5 {
  color: #2c3e50;
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.episode-content p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.episode-duration {
  color: #999;
  font-size: 0.8rem;
}

.play-episode {
  background: #27ae60;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}

.play-episode:hover {
  background: #229954;
}

/* Download Center Styles */
.download-center {
  margin-bottom: 60px;
}

.download-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.download-category {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #3498db;
}

.download-category h4 {
  color: #2c3e50;
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.download-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: #2c3e50;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.download-item:hover {
  background: #3498db;
  color: white;
  transform: translateX(5px);
}

.file-size {
  font-size: 0.85rem;
  color: #666;
  background: #e9ecef;
  padding: 2px 8px;
  border-radius: 10px;
}

.download-item:hover .file-size {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

/* Resource Center Styles */
.resource-center {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
}

.resource-center h3 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.resource-center > p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.resource-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.resource-category {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #3498db;
}

.resource-category h4 {
  color: #2c3e50;
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.resource-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resource-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  background: white;
  border-radius: 8px;
  text-decoration: none;
  color: #2c3e50;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.resource-item:hover {
  background: #3498db;
  color: white;
  transform: translateX(5px);
}

.item-icon {
  font-size: 1.2rem;
  margin-right: 12px;
}

.item-name {
  flex: 1;
  font-weight: 500;
}

.item-size {
  font-size: 0.85rem;
  color: #666;
  background: #f8f9fa;
  padding: 2px 8px;
  border-radius: 10px;
}

.resource-item:hover .item-size {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

.download-all {
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 15px;
  border: 2px dashed #3498db;
}

.download-all-btn {
  background: #3498db;
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  transition: background 0.3s ease;
  margin-bottom: 15px;
}

.download-all-btn:hover {
  background: #2980b9;
}

.download-info {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Media Request Form Styles */
.media-request {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.media-request h3 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.media-request > p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 40px;
}

.request-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.form-select,
.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
}

.form-select:focus,
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #3498db;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.submit-request-btn {
  background: #3498db;
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  transition: background 0.3s ease;
  width: 100%;
}

.submit-request-btn:hover {
  background: #2980b9;
}

/* Responsive Design for Multimedia */
@media screen and (max-width: 768px) {
  .video-player {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .video-thumbnail {
    height: 120px;
    margin: 0 auto 20px;
    width: 120px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .media-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .media-thumbnail {
    margin: 0 auto 20px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .resource-categories {
    grid-template-columns: 1fr;
  }
  
  .resource-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .item-size {
    align-self: center;
  }
}

/* 뉴스 카테고리 반응형 개선 */
@media screen and (max-width: 768px) {
  .category-filters {
    gap: 6px;
    padding: 10px;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 20px;
  }
  
  .news-categories h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .pagination {
    gap: 3px;
    padding: 15px 0;
  }
  
  .pagination-btn {
    min-width: 35px;
    height: 35px;
    padding: 8px 12px;
    font-size: 0.85rem;
  }
  
  .pagination-btn:first-child,
  .pagination-btn:last-child {
    padding: 8px 14px;
  }
}

@media screen and (max-width: 480px) {
  .category-filters {
    gap: 4px;
    padding: 8px 5px;
  }
  
  .filter-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
    min-width: 60px;
    flex: 1;
  }
  
  .pagination {
    flex-wrap: wrap;
    gap: 2px;
  }
  
  .pagination-btn {
    min-width: 32px;
    height: 32px;
    padding: 6px 10px;
    font-size: 0.8rem;
  }
}

/* Responsive Design for New Pages */
@media screen and (max-width: 768px) {
  .intro-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .timeline:before {
    left: 20px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 20px;
  }
  
  .timeline-item:nth-child(even) {
    left: 0%;
  }
  
  .timeline-item:after {
    left: 10px;
  }
  
  .timeline-item:nth-child(even):after {
    left: 10px;
  }
  
  .values-detailed {
    grid-template-columns: 1fr;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .framework-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .areas-grid {
    grid-template-columns: 1fr;
  }
  
  .regions {
    grid-template-columns: 1fr;
  }
  
  .achievements-grid {
    grid-template-columns: 1fr;
  }
  
  .plans-timeline {
    grid-template-columns: 1fr;
  }
  
  .roadmap {
    grid-template-columns: 1fr;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  background-color: #2c3e50;
  color: white;
  padding: 50px 0 20px;
  margin-top: 80px;
  position: relative;
  z-index: 10;
  clear: both;
}

/* Ensure footer is at bottom for all pages */
.main-content {
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
}

.main-page,
.page-content {
  flex: 1;
  min-height: calc(100vh - 150px);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #3498db;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ecf0f1;
}

.footer-section p {
  line-height: 1.6;
  color: #bdc3c7;
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #34495e;
  color: #95a5a6;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .nav-link {
    padding: 20px;
    width: 100%;
  }

  .dropdown-content {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    background-color: #f8f9fa;
    display: none;
    width: 100%;
    min-width: auto;
    padding: 0;
    margin: 0;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

  .dropdown-content a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #2c3e50;
    font-size: 14px;
    border-bottom: 1px solid #e9ecef;
    background-color: #f8f9fa;
    transition: background-color 0.3s ease;
  }

  .dropdown-content a:last-child {
    border-bottom: none;
  }

  .dropdown-content a:hover {
    background-color: #e9ecef;
    color: #3498db;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .mission-section h2,
  .programs-section h2,
  .sustainability-section h2,
  .news-section h2 {
    font-size: 2rem;
  }

  .sustainability-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

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

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}

@media screen and (max-width: 480px) {
  .nav-container {
    padding: 0 15px;
  }

  .nav-logo h2 {
    font-size: 20px;
  }

  .hero {
    padding: 60px 15px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .mission-grid,
  .programs-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .impact-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-section,
  .programs-section,
  .sustainability-section,
  .news-section {
    padding: 60px 0;
  }
}