/* Language Switcher Styles */
    #language-switcher {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      align-items: center;
    }

    #lang-select {
      background: #FFF5E0;
      color: #4A2A1A;
      border: 1px solid #1A6B5F;
      border-radius: 20px;
      padding: 8px 12px;
      font-size: 14px;
      font-weight: 500;
      font-family: 'Poppins', Arial, sans-serif;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(74, 42, 26, 0.2);
    }

    #lang-select:hover,
    #lang-select:focus {
      background: #1A6B5F;
      color: #FFF5E0;
      border-color: #C76A4A;
      outline: none;
      transform: scale(1.05);
    }

    #lang-select option {
      background: #FFF5E0;
      color: #4A2A1A;
    }

    /* Header Styles */
    .site-header {
      background: linear-gradient(135deg, #fff5e0 0%, #f8f0d8 100%);
      box-shadow: 0 8px 32px rgba(74, 42, 26, 0.12);
      border-bottom: 3px solid transparent;
      border-image: linear-gradient(90deg, #C76A4A, #1A6B5F, #C76A4A) 1;
      position: sticky;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      font-family: 'Poppins', Arial, sans-serif;
      height: 85px;
      backdrop-filter: blur(10px);
    }

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

    .logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
      position: relative;
    }

    .logo-img {
      height: 55px;
      width: auto;
      transition: all 0.4s ease;
      filter: drop-shadow(0 2px 8px rgba(26, 107, 95, 0.2));
    }

    .logo-link:hover .logo-img {
      transform: scale(1.08) rotate(2deg);
      filter: drop-shadow(0 4px 12px rgba(26, 107, 95, 0.4));
    }

    .nav-links {
      display: flex;
      align-items: center;
      flex-grow: 1;
      justify-content: flex-end;
    }

    .nav-content {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .nav-items {
      list-style: none;
      display: flex;
      gap: 35px;
      margin: 0;
      padding: 0;
      flex-wrap: nowrap;
      align-items: center;
    }

    .nav-items li {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      position: relative;
    }

    .nav-items a {
      color: #4A2A1A;
      text-decoration: none;
      font-size: 16px;
      font-weight: 600;
      position: relative;
      transition: all 0.3s ease;
      white-space: nowrap;
      display: flex;
      align-items: center;
      padding: 12px 16px;
      border-radius: 25px;
    }

    .nav-items a:hover {
      color: #1A6B5F;
      transform: translateY(-3px);
      background: rgba(26, 107, 95, 0.08);
      box-shadow: 0 4px 12px rgba(26, 107, 95, 0.15);
    }

    .nav-items a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, #C76A4A, #1A6B5F);
      bottom: 4px;
      left: 16px;
      right: 16px;
      transition: width 0.4s ease;
      border-radius: 2px;
    }

    .nav-items a:hover::after {
      width: calc(100% - 32px);
    }

    /* Dropdown Styles */
    .dropdown {
      position: relative;
    }

    .dropdown-toggle {
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .dropdown-toggle::after {
      content: '▼';
      font-size: 11px;
      transition: transform 0.3s ease;
      color: #1A6B5F;
    }

    .dropdown:hover .dropdown-toggle::after {
      transform: rotate(180deg);
    }

    .dropdown-menu {
      display: block;
      visibility: hidden;
      opacity: 0;
      position: absolute;
      top: 120%;
      left: 50%;
      transform: translateX(-50%) translateY(-15px);
      background: rgba(255, 245, 224, 0.98);
      backdrop-filter: blur(15px);
      box-shadow: 0 8px 32px rgba(74, 42, 26, 0.2);
      border-radius: 16px;
      min-width: 220px;
      z-index: 1001;
      padding: 16px 0;
      border: 2px solid rgba(26, 107, 95, 0.1);
      transition: all 0.4s ease;
    }

    .dropdown:hover .dropdown-menu {
      visibility: visible;
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    .dropdown:hover .dropdown-toggle {
      color: #1A6B5F;
      transform: translateY(-3px);
      background: rgba(26, 107, 95, 0.08);
      box-shadow: 0 4px 12px rgba(26, 107, 95, 0.15);
    }

    .dropdown-menu a {
      display: block;
      padding: 14px 24px;
      font-size: 15px;
      font-weight: 500;
      color: #4A2A1A;
      text-decoration: none;
      transition: all 0.3s ease;
      border-radius: 0;
      margin: 0 8px;
      border-radius: 10px;
    }

    .dropdown-menu a:hover {
      background: linear-gradient(135deg, #1A6B5F, #2A7B6F);
      color: #FFF5E0;
      transform: translateX(4px);
      box-shadow: 0 4px 12px rgba(26, 107, 95, 0.3);
    }

    .dropdown-menu a::after {
      display: none;
    }

    /* Hamburger Menu Styles */
    .hamburger-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-around;
      width: 32px;
      height: 32px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 4px;
      z-index: 1003;
      border-radius: 8px;
      transition: all 0.3s ease;
      position: relative;
    }

    .hamburger-toggle:hover {
      background: rgba(26, 107, 95, 0.1);
      transform: scale(1.05);
    }

    /* Mobile Close Button */
    .mobile-close-btn {
      position: fixed;
      top: 20px;
      right: 20px;
      width: 48px;
      height: 48px;
      background: rgba(255, 245, 224, 0.95);
      border: 2px solid #C76A4A;
      border-radius: 50%;
      cursor: pointer;
      z-index: 1005;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 16px rgba(199, 106, 74, 0.3);
    }

    .mobile-close-btn:hover {
      background: #C76A4A;
      transform: scale(1.1) rotate(90deg);
      box-shadow: 0 6px 20px rgba(199, 106, 74, 0.5);
    }

    .mobile-close-btn svg {
      color: #C76A4A;
      transition: color 0.3s ease;
    }

    .mobile-close-btn:hover svg {
      color: #FFF5E0;
    }

    .hamburger-toggle.active {
      opacity: 0;
      pointer-events: none;
    }

    .hamburger-line {
      width: 100%;
      height: 3px;
      background: #4A2A1A;
      border-radius: 3px;
      transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      transform-origin: center;
    }

    .hamburger-toggle.active .hamburger-line:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
      background: #C76A4A;
      width: 100%;
    }

    .hamburger-toggle.active .hamburger-line:nth-child(2) {
      opacity: 0;
      transform: scale(0);
    }

    .hamburger-toggle.active .hamburger-line:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
      background: #C76A4A;
      width: 100%;
    }

    /* Mobile Navigation Menu */
    .mobile-nav-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: linear-gradient(135deg, #fff5e0 0%, #f8f0d8 50%, #f0e8d0 100%);
      z-index: 1001;
      transform: translateX(-100%);
      transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      overflow-y: auto;
    }

    .mobile-nav-menu.active {
      transform: translateX(0);
    }

    .mobile-nav-content {
      padding: 120px 40px 40px;
      max-width: 500px;
      margin: 0 auto;
    }

    .mobile-nav-title {
      font-size: 28px;
      font-weight: 700;
      color: #4A2A1A;
      margin-bottom: 40px;
      text-align: center;
      background: linear-gradient(135deg, #C76A4A, #1A6B5F);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

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

    .mobile-nav-items > li {
      margin-bottom: 8px;
    }

    .mobile-nav-items a {
      display: block;
      color: #4A2A1A;
      text-decoration: none;
      font-size: 20px;
      font-weight: 600;
      padding: 20px 24px;
      border-radius: 16px;
      transition: all 0.3s ease;
      background: rgba(255, 255, 255, 0.6);
      border: 2px solid transparent;
      margin-bottom: 4px;
    }

    .mobile-nav-items a:hover,
    .mobile-nav-items a:focus {
      color: #FFF5E0;
      background: linear-gradient(135deg, #1A6B5F, #2A7B6F);
      border-color: rgba(199, 106, 74, 0.3);
      transform: translateX(8px);
      box-shadow: 0 8px 24px rgba(26, 107, 95, 0.3);
    }

    .mobile-dropdown-toggle {
      position: relative;
    }

    .mobile-dropdown-toggle::after {
      content: '›';
      position: absolute;
      right: 24px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 24px;
      font-weight: 700;
      transition: transform 0.3s ease;
      color: #1A6B5F;
    }

    .mobile-dropdown-toggle.active::after {
      transform: translateY(-50%) rotate(90deg);
    }

    .mobile-dropdown {
      max-height: 0;
      overflow: hidden;
      transition: all 0.4s ease;
      margin-left: 20px;
      border-left: 3px solid rgba(26, 107, 95, 0.2);
      padding-left: 20px;
    }

    .mobile-dropdown.active {
      max-height: 400px;
      margin-top: 12px;
      margin-bottom: 16px;
    }

    .mobile-dropdown a {
      font-size: 18px;
      font-weight: 500;
      padding: 16px 20px;
      color: #666;
      background: rgba(255, 255, 255, 0.4);
      margin-bottom: 8px;
    }

    .mobile-dropdown a:hover {
      color: #FFF5E0;
      background: linear-gradient(135deg, #C76A4A, #D47A5A);
      transform: translateX(4px);
    }

    /* Mobile Menu Overlay */
    .mobile-nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(0, 0, 0, 0.5);
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      backdrop-filter: blur(2px);
    }

    .mobile-nav-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
      .site-header {
        height: 70px;
        padding: 0;
      }

      .header-container {
        padding: 0 20px;
      }

      .logo-img {
        height: 45px;
      }

      .nav-links {
        display: none !important;
      }

      .hamburger-toggle {
        display: flex !important;
      }

      .mobile-nav-menu {
        display: block !important;
      }

      #language-switcher {
        bottom: 20px;
        right: 20px;
      }

      #lang-select {
        font-size: 12px;
        padding: 8px 12px;
      }
    }

    @media (max-width: 480px) {
      .header-container {
        padding: 0 16px;
      }

      .mobile-nav-content {
        padding: 100px 24px 40px;
      }

      .mobile-nav-title {
        font-size: 24px;
        margin-bottom: 32px;
      }

      .mobile-nav-items a {
        font-size: 18px;
        padding: 18px 20px;
      }

      .mobile-dropdown a {
        font-size: 16px;
        padding: 14px 16px;
      }
    }