:root {
  /* Base Colors */
  --primary-color: #3a4b7a;
  --primary-dark: #2a3a69;
  --primary-light: #4a5c8a;
  --primary-lightest: #eaeff8;
  
  /* Secondary Colors */
  --secondary-color: #6d7fae;
  --secondary-dark: #596a98;
  --secondary-light: #8794c3;
  
  /* Monochromatic Scheme */
  --text-dark: #1a2340;
  --text-medium: #3a4b7a;
  --text-light: #8894b8;
  --text-white: #ffffff;
  
  /* Backgrounds */
  --bg-light: #f5f7fc;
  --bg-lighter: #ffffff;
  --bg-dark: #e0e6f2;
  --bg-darker: #c5cfe6;
  
  /* Shadow Colors for Neuromorphic Design */
  --shadow-light: rgba(255, 255, 255, 0.7);
  --shadow-dark: rgba(174, 184, 209, 0.3);
  
  /* Spacing Variables */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 15px;
  --radius-lg: 25px;
  --radius-xl: 40px;
  
  /* Transitions */
  --transition-fast: 0.2s ease-out;
  --transition-medium: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --transition-slow: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Container Widths */
  --container-sm: 540px;
  --container-md: 720px;
  --container-lg: 960px;
  --container-xl: 1140px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--text-medium);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: var(--space-sm);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  width: 100%;
  padding-right: var(--space-sm);
  padding-left: var(--space-sm);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: var(--container-sm);
  }
}

@media (min-width: 768px) {
  .container {
    max-width: var(--container-md);
  }
}

@media (min-width: 992px) {
  .container {
    max-width: var(--container-lg);
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: var(--container-xl);
  }
}

/* Section Styles */
section {
  padding: var(--space-lg) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-md);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  margin: var(--space-sm) auto 0;
  border-radius: var(--radius-sm);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Neuromorphic Card Styles */
.card, .award-card, .bts-item, .resource-card, .info-item {
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover, .award-card:hover, .bts-item:hover, .resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    10px 10px 20px var(--shadow-dark),
    -10px -10px 20px var(--shadow-light);
}

.card-image, .bts-image, .award-icon {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: var(--space-sm);
  box-shadow: 
    inset 4px 4px 8px var(--shadow-dark),
    inset -4px -4px 8px var(--shadow-light);
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image img, .bts-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0 auto;
  transition: transform var(--transition-slow);
}

.card-image:hover img, .bts-image:hover img {
  transform: scale(1.05);
}

.card-content, .bts-content {
  width: 100%;
  text-align: center;
}

.card h3, .award-card h3, .bts-item h3 {
  margin-top: var(--space-sm);
}

/* Button Styles */
.btn, button, input[type='submit'] {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-medium);
  background-color: var(--bg-light);
  color: var(--primary-color);
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:hover, button:hover, input[type='submit']:hover {
  box-shadow: 
    3px 3px 6px var(--shadow-dark),
    -3px -3px 6px var(--shadow-light);
  transform: translateY(-2px);
}

.btn:active, button:active, input[type='submit']:active {
  box-shadow: 
    inset 3px 3px 6px var(--shadow-dark),
    inset -3px -3px 6px var(--shadow-light);
  transform: translateY(0);
}

.primary-btn {
  background-color: var(--primary-color);
  color: var(--text-white);
  box-shadow: 
    4px 4px 8px rgba(58, 75, 122, 0.4),
    -4px -4px 8px rgba(255, 255, 255, 0.1);
}

.primary-btn:hover {
  background-color: var(--primary-dark);
  color: var(--text-white);
}

.secondary-btn {
  background-color: var(--bg-lighter);
  color: var(--primary-color);
  border: 1px solid var(--primary-light);
}

.secondary-btn:hover {
  background-color: var(--primary-lightest);
  color: var(--primary-dark);
}

/* Resource Link Button */
.resource-link {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  margin-top: var(--space-sm);
  background-color: var(--primary-lightest);
  color: var(--primary-color);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: all var(--transition-medium);
}

.resource-link:hover {
  background-color: var(--primary-light);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* Read More Links */
.read-more {
  display: inline-block;
  margin-top: var(--space-sm);
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
}

.read-more::after {
  content: '→';
  display: inline-block;
  margin-left: 0.3rem;
  transition: transform var(--transition-fast);
}

.read-more:hover::after {
  transform: translateX(5px);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--bg-lighter);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: var(--space-sm) 0;
  transition: all var(--transition-fast);
}

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

.logo a {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.logo h1 {
  font-size: 1.8rem;
  margin-bottom: 0;
}

/* Navigation Styles */
.desktop-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav li {
  margin-left: var(--space-md);
}

.desktop-nav a {
  color: var(--text-medium);
  font-weight: 600;
  position: relative;
  padding: 0.3rem 0;
  transition: color var(--transition-fast);
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-medium);
}

.desktop-nav a:hover {
  color: var(--primary-color);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

.mobile-nav {
  display: none;
  background-color: var(--bg-lighter);
  padding: var(--space-sm) 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav li {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--bg-dark);
}

.mobile-nav a {
  color: var(--text-medium);
  font-weight: 600;
  display: block;
  transition: color var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--primary-color);
}

/* Mobile Navigation Toggle */
@media (max-width: 991px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-nav.active {
    display: block;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--text-white);
  margin-top: 0;
  padding: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-md);
  z-index: 1;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  color: var(--text-white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  color: var(--text-white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Portfolio Section */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.portfolio .card {
  height: 100%;
}

.portfolio .card-image {
  height: 300px;
}

.workshop-date {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.workshop-details {
  background-color: var(--primary-lightest);
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  margin: var(--space-sm) 0;
}

/* Awards Section */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.award-card {
  text-align: center;
  height: 100%;
}

.award-icon {
  height: 200px;
  width: 200px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.award-icon .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(58, 75, 122, 0.7), rgba(109, 127, 174, 0.3));
}

/* Sustainability Section */
.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-md);
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: var(--space-lg);
}

.stat-widget {
  text-align: center;
  padding: var(--space-md);
  margin: var(--space-sm);
  width: 200px;
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
  transition: transform var(--transition-medium);
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 600;
}

/* Resources Section */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-md);
}

.resource-card {
  text-align: center;
  padding: var(--space-md);
  height: 100%;
}

/* Workshops Section */
.workshops-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 992px) {
  .workshops-grid {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  }
}

.workshops .card {
  height: 100%;
}

/* Behind the Scenes Section */
.bts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.bts-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 992px) {
  .bts-item {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .bts-image {
    width: 40%;
    margin-right: var(--space-md);
    margin-bottom: 0;
  }
  
  .bts-content {
    width: 60%;
    text-align: left;
  }
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--space-sm);
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--primary-lightest);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform var(--transition-medium);
}

.faq-answer {
  padding: 0 var(--space-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.faq-item.active .faq-answer {
  padding: 0 var(--space-md) var(--space-md);
  max-height: 1000px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.map-container {
  width: 100%;
  height: 300px;
  margin-top: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
}

.contact-form {
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  color: var(--text-medium);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: var(--radius-sm);
  background-color: var(--bg-lighter);
  box-shadow: 
    inset 3px 3px 5px var(--shadow-dark),
    inset -3px -3px 5px var(--shadow-light);
  color: var(--text-medium);
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: 
    inset 4px 4px 6px var(--shadow-dark),
    inset -4px -4px 6px var(--shadow-light),
    0 0 0 3px var(--primary-lightest);
}

/* Footer Styles */
.footer {
  background-color: var(--primary-dark);
  color: var(--text-white);
  padding: var(--space-lg) 0 var(--space-sm);
  margin-top: var(--space-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-logo h2 {
  color: var(--text-white);
  margin-bottom: var(--space-sm);
}

.footer-logo p {
  color: var(--bg-dark);
}

.footer-links h3,
.footer-social h3 {
  color: var(--text-white);
  margin-bottom: var(--space-sm);
}

.footer-links ul,
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-social li {
  margin-bottom: var(--space-xs);
}

.footer-links a,
.footer-social a {
  color: var(--bg-dark);
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--text-white);
  transform: translateX(5px);
}

.footer-social a {
  display: flex;
  align-items: center;
}

.footer-social a::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform var(--transition-medium);
}

.footer-social a:hover::before {
  transform: scale(1.2);
}

.footer-social li:nth-child(1) a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e0e6f2'%3E%3Cpath d='M20.9,2H3.1C2.5,2,2,2.5,2,3.1v17.7C2,21.5,2.5,22,3.1,22h9.5v-7.7h-2.6v-3h2.6V9.4c0-2.6,1.6-4,3.9-4c1.1,0,2,0.1,2.3,0.1v2.7h-1.6c-1.3,0-1.5,0.6-1.5,1.5v1.9h3l-0.4,3h-2.6V22h5.1c0.6,0,1.1-0.5,1.1-1.1V3.1C22,2.5,21.5,2,20.9,2z'/%3E%3C/svg%3E");
}

.footer-social li:nth-child(2) a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e0e6f2'%3E%3Cpath d='M23,5.1c-0.8,0.4-1.7,0.6-2.6,0.7c0.9-0.6,1.6-1.5,1.9-2.5c-0.9,0.5-1.8,0.9-2.9,1.1c-0.8-0.9-2-1.4-3.3-1.4c-2.5,0-4.5,2-4.5,4.5c0,0.4,0,0.7,0.1,1C7.7,8.1,4.1,6.3,1.7,3.6C1.2,4.3,1,5.1,1,5.9c0,1.6,0.8,2.9,2,3.7c-0.7,0-1.4-0.2-2-0.6v0.1c0,2.2,1.6,4,3.6,4.4c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.6,0-0.8-0.1c0.6,1.8,2.2,3.1,4.1,3.1c-1.5,1.2-3.4,1.9-5.5,1.9c-0.4,0-0.7,0-1-0.1c2,1.3,4.3,2,6.8,2c8.1,0,12.6-6.7,12.6-12.6c0-0.2,0-0.4,0-0.6C21.6,6.8,22.4,6,23,5.1z'/%3E%3C/svg%3E");
}

.footer-social li:nth-child(3) a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e0e6f2'%3E%3Cpath d='M12,2.2c3.2,0,3.6,0,4.9,0.1c1.2,0.1,1.8,0.2,2.2,0.4c0.6,0.2,1,0.5,1.4,0.9c0.4,0.4,0.7,0.8,0.9,1.4c0.2,0.4,0.4,1,0.4,2.2c0.1,1.3,0.1,1.6,0.1,4.8s0,3.6-0.1,4.9c-0.1,1.2-0.2,1.8-0.4,2.2c-0.2,0.6-0.5,1-0.9,1.4c-0.4,0.4-0.8,0.7-1.4,0.9c-0.4,0.2-1,0.4-2.2,0.4c-1.3,0.1-1.6,0.1-4.9,0.1s-3.6,0-4.9-0.1c-1.2-0.1-1.8-0.2-2.2-0.4c-0.6-0.2-1-0.5-1.4-0.9c-0.4-0.4-0.7-0.8-0.9-1.4c-0.2-0.4-0.4-1-0.4-2.2c-0.1-1.3-0.1-1.6-0.1-4.9s0-3.6,0.1-4.9c0.1-1.2,0.2-1.8,0.4-2.2c0.2-0.6,0.5-1,0.9-1.4c0.4-0.4,0.8-0.7,1.4-0.9c0.4-0.2,1-0.4,2.2-0.4C8.4,2.2,8.7,2.2,12,2.2M12,0C8.7,0,8.3,0,7.1,0.1c-1.3,0.1-2.2,0.3-3,0.6C3.4,1,2.7,1.3,2,2C1.3,2.7,0.9,3.4,0.6,4.1c-0.3,0.8-0.5,1.7-0.5,3C0,8.3,0,8.7,0,12s0,3.7,0.1,4.9c0.1,1.3,0.3,2.2,0.6,3C0.9,20.6,1.3,21.3,2,22c0.7,0.7,1.4,1.1,2.1,1.4c0.8,0.3,1.7,0.5,3,0.6C8.3,24,8.7,24,12,24s3.7,0,4.9-0.1c1.3-0.1,2.2-0.3,3-0.6c0.8-0.3,1.5-0.7,2.1-1.4c0.7-0.7,1.1-1.3,1.4-2.1c0.3-0.8,0.5-1.7,0.6-3C24,15.7,24,15.3,24,12s0-3.7-0.1-4.9c-0.1-1.3-0.3-2.2-0.6-3c-0.3-0.8-0.7-1.5-1.4-2.1c-0.7-0.7-1.3-1.1-2.1-1.4c-0.8-0.3-1.7-0.5-3-0.6C15.7,0,15.3,0,12,0L12,0z M12,5.8c-3.4,0-6.2,2.8-6.2,6.2s2.8,6.2,6.2,6.2s6.2-2.8,6.2-6.2S15.4,5.8,12,5.8z M12,16c-2.2,0-4-1.8-4-4s1.8-4,4-4s4,1.8,4,4S14.2,16,12,16z M18.4,4.2c-0.8,0-1.4,0.6-1.4,1.4S17.6,7,18.4,7c0.8,0,1.4-0.6,1.4-1.4S19.2,4.2,18.4,4.2z'/%3E%3C/svg%3E");
}

.footer-social li:nth-child(4) a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e0e6f2'%3E%3Cpath d='M23.5,6.2c-0.3-1-1.1-1.8-2.1-2.1C19.5,3.6,12,3.6,12,3.6s-7.5,0-9.4,0.5C1.6,4.4,0.8,5.2,0.5,6.2C0,8.1,0,12,0,12s0,3.9,0.5,5.8c0.3,1,1.1,1.8,2.1,2.1C4.5,20.4,12,20.4,12,20.4s7.5,0,9.4-0.5c1-0.3,1.8-1.1,2.1-2.1C24,15.9,24,12,24,12S24,8.1,23.5,6.2z M9.6,15.6V8.4l6.2,3.6L9.6,15.6z'/%3E%3C/svg%3E");
}

.footer-social li:nth-child(5) a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e0e6f2'%3E%3Cpath d='M20.3,4.3c-1.2-1.2-2.7-1.8-4.3-1.8L4.3,2.5C2.7,2.5,1.2,3.1,0,4.3C0,5.5,0,7,0,8.6L0,13l0,1.8c0,1.6,0.6,3.1,1.8,4.3c1.2,1.2,2.7,1.8,4.3,1.8L12,21h4.3c1.6,0,3.1-0.6,4.3-1.8c1.2-1.2,1.8-2.7,1.8-4.3v-3.7l0,0V8.6l0,0C22.1,7,21.5,5.5,20.3,4.3z M17.7,15.3c0,1.9-1.9,3.4-4.3,3.4H4.9c-2.4,0-4.3-1.5-4.3-3.4v-6c0-1.9,1.9-3.4,4.3-3.4h8.6c2.4,0,4.3,1.5,4.3,3.4V15.3z M9.8,9.8c-1.6,0-2.9,1.3-2.9,2.9c0,1.6,1.3,2.9,2.9,2.9c1.6,0,2.9-1.3,2.9-2.9C12.7,11.1,11.4,9.8,9.8,9.8z M14.9,9.2c-0.3,0-0.6,0.3-0.6,0.6c0,0.3,0.3,0.6,0.6,0.6c0.3,0,0.6-0.3,0.6-0.6C15.5,9.4,15.2,9.2,14.9,9.2z'/%3E%3C/svg%3E");
}

.footer-bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--bg-dark);
  font-size: 0.9rem;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-md);
}

.success-content {
  max-width: 600px;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  background-color: var(--bg-light);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
}

.success-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

/* Terms & Privacy Pages */
.terms-page, .privacy-page {
  padding-top: 100px;
}

.terms-content, .privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-md);
}

.terms-content h2, .privacy-content h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

/* Animation Utilities */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries */
@media (max-width: 767px) {
  .hero-content h2 {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .card, .award-card, .bts-item {
    padding: var(--space-sm);
  }
  
  .stats-container {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-widget {
    width: 100%;
    max-width: 250px;
    margin-bottom: var(--space-sm);
  }
}

/* JavaScript Support Classes */
.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.invisible {
  visibility: hidden !important;
}

.no-scroll {
  overflow: hidden !important;
}