    :root {
      --gold-primary: #D4AF37;
      --gold-secondary: #B8860B;
      --silver-primary: #C0C0C0;
      --silver-secondary: #A8A8A8;
      --bg-dark: #0a0a0a;
      --panel-dark: #151515;
      --text-light: #f8f8f8;
      --text-muted: #b0b0b0;
      --border-radius: 24px;
      --box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
      --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--bg-dark);
      color: var(--text-light);
      min-height: 100vh;
      padding: 60px 20px;
      line-height: 1.8;
      background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(192, 192, 192, 0.08) 0%, transparent 25%);
      overflow-x: hidden;
    }

    header {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
    }

    .logo-container {
      position: relative;
      display: inline-block;
      margin-bottom: 30px;
    }

    .logo-container::before {
      content: '';
      position: absolute;
      top: -15px;
      left: -15px;
      right: -15px;
      bottom: -15px;
      border-radius: 50%;
      background: linear-gradient(
        45deg,
        #C0C0C0,  /* Silver */
        #E0E0E0,  /* Bright silver */
        #A8A8A8,  /* Dark silver */
        #D3D3D3,  /* Light gray */
        #B0B0B0,  /* Gray */
        #C0C0C0   /* Silver */
      );
      background-size: 400% 400%;
      z-index: -1;
      filter: blur(25px);
      opacity: 0.8;
      animation: glowing-border 8s ease infinite;
    }

    @keyframes glowing-border {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    header img {
      width: 180px;
      height: 180px;
      object-fit: contain;
      border: 3px solid rgba(192, 192, 192, 0.6);
      border-radius: 50%;
      box-shadow: 0 0 60px rgba(192, 192, 192, 0.5);
      background-color: var(--panel-dark);
      padding: 20px;
      transition: var(--transition);
      position: relative;
      z-index: 1;
    }

    header img:hover {
      transform: scale(1.05) rotate(5deg);
      box-shadow: 0 0 80px rgba(192, 192, 192, 0.7);
    }

    h1 {
      font-family: 'Cinzel', serif;
      font-size: 3.5rem;
      font-weight: 700;
      background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 20px;
      letter-spacing: 1.5px;
      text-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    }

    .subtitle {
      color: var(--text-muted);
      font-size: 1.3rem;
      max-width: 700px;
      margin: 0 auto;
      font-weight: 300;
      letter-spacing: 0.5px;
    }

    .content {
      max-width: 900px;
      margin: 0 auto;
      background: rgba(21, 21, 21, 0.7);
      padding: 60px;
      border-radius: var(--border-radius);
      box-shadow: var(--box-shadow);
      border: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
      transition: var(--transition);
    }

    .content:hover {
      transform: translateY(-5px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    }

    .intro {
      font-size: 1.2rem;
      margin-bottom: 40px;
      line-height: 1.9;
      color: var(--text-light);
    }

    .info {
      margin-top: 40px;
    }

    .info-item {
      display: flex;
      align-items: center;
      margin-bottom: 25px;
      padding-bottom: 25px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .info-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(192, 192, 192, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 25px;
      font-size: 1.3rem;
      color: var(--silver-primary);
      flex-shrink: 0;
    }

    .label {
      color: var(--silver-primary);
      font-weight: 500;
      font-size: 1rem;
      margin-bottom: 5px;
      letter-spacing: 1px;
    }

    .value {
      font-size: 1.2rem;
      color: var(--text-light);
    }

    a {
      color: var(--silver-primary);
      text-decoration: none;
      transition: var(--transition);
      position: relative;
    }

    a:hover {
      color: var(--gold-primary);
    }

    a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--gold-primary);
      transition: var(--transition);
    }

    a:hover::after {
      width: 100%;
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 50px;
    }

    .social-link {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(192, 192, 192, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: var(--silver-primary);
      transition: var(--transition);
    }

    .social-link:hover {
      background: rgba(212, 175, 55, 0.2);
      color: var(--gold-primary);
      transform: translateY(-5px);
    }

    .map-container {
      margin-top: 50px;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
      height: 400px;
      background: #222;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .map-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
    }

    .map-placeholder i {
      font-size: 3rem;
      margin-bottom: 20px;
      color: var(--silver-primary);
    }

    @media (max-width: 900px) {
      .content {
        padding: 40px;
      }
      
      h1 {
        font-size: 3rem;
      }
    }

    @media (max-width: 700px) {
      h1 {
        font-size: 2.5rem;
      }
      
      .info-item {
        flex-direction: column;
        align-items: flex-start;
      }
      
      .icon {
        margin-right: 0;
        margin-bottom: 15px;
      }
    }

    @media (max-width: 500px) {
      body {
        padding: 40px 15px;
      }
      
      .content {
        padding: 30px;
      }
      
      h1 {
        font-size: 2.2rem;
      }
      
      header img {
        width: 150px;
        height: 150px;
      }
    }
	
	.back-button {
  position: fixed;
  top: 20px;
  left: 20px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-primary);
  padding: 10px 16px;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
  transition: all 0.3s ease;
}

.back-button:hover {
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-secondary);
}

  .lang-switcher {
      position: fixed;
      top: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      background: rgba(21, 21, 21, 0.85);
      border-radius: 50px;
      padding: 5px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(8px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
    .lang-btn {
      border: none;
      background: transparent;
      color: var(--text-muted);
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      padding: 8px 20px;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 0.9rem;
    }
    .lang-btn.active {
      background: rgba(212, 175, 55, 0.2);
      color: var(--gold-primary);
    }
	
	/* Light Mode Styles for About Page */
.light-mode {
  --bg-dark: ivory;
  --panel-dark: #f8f8f8;
  --text-light: #1a1a1a;
  --text-muted: #555;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.light-mode body {
  background: var(--bg-dark);
  color: var(--text-light);
}

.light-mode .content {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--box-shadow);
}

.light-mode .subtitle,
.light-mode .value,
.light-mode .intro {
  color: var(--text-light);
}

.light-mode .icon {
  background: rgba(0, 0, 0, 0.05);
  color: var(--gold-primary);
}

.light-mode .lang-switcher {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.light-mode .lang-btn {
  color: #555;
}

.light-mode .lang-btn.active {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-primary);
}

.light-mode .back-button {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-secondary);
}

.lang-switcher {
  display: none !important;
}

 /* Menu Wrapper */
  .menu-wrapper {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1100;
    background: rgba(21, 21, 21, 0.85);
    padding: 5px 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  .hamburger {
    font-size: 22px;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px 8px;
    border-radius: 6px;
    transition: background 0.3s ease;
  }

  .hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .dropdown-menu {
    list-style: none;
    margin-top: 8px;
    padding: 0;
    background: rgba(20, 20, 20, 0.95);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    animation: fadeIn 0.3s ease;
    min-width: 140px;
  }

  .dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
  }

  .dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .light-mode .menu-wrapper {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .light-mode .hamburger {
    color: var(--text-light);
  }

  .light-mode .hamburger:hover {
    background: rgba(0, 0, 0, 0.06);
  }

  .light-mode .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.12);
  }

  .light-mode .dropdown-menu li a {
    color: var(--text-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .light-mode .dropdown-menu li a:hover {
    background: rgba(0, 0, 0, 0.06);
  }
  .lang-switcher {
  display: none !important;
}
