      * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      }
      body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      line-height: 1.6;
      color: #2c2c2c;
      background-color: #f8f9fa;
      }
      .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      }
      header {
      background: linear-gradient(135deg, #9F9ABF 0%, #C0BBD7 100%);
      padding: 20px 0;
      box-shadow: 0 2px 10px rgba(159, 154, 191, 0.15);
      }
      .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 70px;
      gap: 30px;
      }
      .logo-container {
      flex-shrink: 0;
      z-index: 10;
      position: relative;
      }
      .logo {
      height: 45px;
      width: auto;
      display: block;
      }
      nav {
      flex-grow: 1;
      display: flex;
      justify-content: flex-end;
      z-index: 5;
      }
      .nav-list {
      display: flex;
      list-style: none;
      gap: clamp(15px, 3vw, 35px);
      align-items: center;
      flex-wrap: wrap;
      }
      .nav-list a {
      text-decoration: none;
      color: #ffffff;
      font-weight: 500;
      font-size: clamp(14px, 2.5vw, 16px);
      padding: 10px 15px;
      border-radius: 6px;
      transition: background-color 0.2s ease;
      white-space: nowrap;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
      min-height: 44px;
      display: flex;
      align-items: center;
      }
      .nav-list a:hover, .nav-list a:focus {
      background-color: rgba(255, 255, 255, 0.15);
      outline: 2px solid rgba(255, 255, 255, 0.5);
      outline-offset: 2px;
      }
      footer {
      background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
      color: #ffffff;
      padding: 50px 0 30px;
      margin-top: 80px;
      }
      .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
      }
      .footer-section h3 {
      color: #C0BBD7;
      margin-bottom: 20px;
      font-size: 18px;
      font-weight: 600;
      }
      .footer-section p, .footer-section a {
      color: #e0e0e0;
      text-decoration: none;
      margin-bottom: 10px;
      display: block;
      font-size: 14px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
      }
      .footer-section a:hover, .footer-section a:focus {
      color: #C0BBD7;
      outline: 2px solid #C0BBD7;
      outline-offset: 2px;
      padding: 5px;
      border-radius: 4px;
      }
      .footer-logo {
      height: 40px;
      width: auto;
      margin-bottom: 15px;
      }
      .footer-bottom {
      border-top: 1px solid #555;
      padding-top: 30px;
      text-align: center;
      color: #b0b0b0;
      font-size: 14px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
      }
      .cookie-popup {
      position: fixed;
      top: 20px;
      right: 20px;
      background: #ffffff;
      border: 2px solid #9F9ABF;
      border-radius: 12px;
      padding: 25px;
      max-width: 400px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      display: none;
      }
      .cookie-popup.show {
      display: block;
      }
      .cookie-popup h4 {
      color: #9F9ABF;
      margin-bottom: 15px;
      font-size: 18px;
      font-weight: 600;
      }
      .cookie-popup p {
      color: #2c2c2c;
      margin-bottom: 20px;
      font-size: 14px;
      line-height: 1.5;
      }
      .cookie-buttons {
      display: flex;
      gap: 12px;
      flex-direction: column;
      }
      .cookie-btn {
      padding: 12px 20px;
      border: none;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: background-color 0.2s ease;
      min-height: 44px;
      text-decoration: none;
      text-align: center;
      display: inline-block;
      }
      .cookie-accept {
      background-color: #9F9ABF;
      color: white;
      }
      .cookie-accept:hover, .cookie-accept:focus {
      background-color: #8A84A8;
      outline: 2px solid #2c2c2c;
      outline-offset: 2px;
      }
      .cookie-reject {
      background-color: #e9ecef;
      color: #2c2c2c;
      border: 1px solid #ced4da;
      }
      .cookie-reject:hover, .cookie-reject:focus {
      background-color: #dee2e6;
      outline: 2px solid #2c2c2c;
      outline-offset: 2px;
      }
      .cookie-learn {
      background: none;
      color: #9F9ABF;
      text-decoration: underline;
      padding: 8px;
      font-size: 13px;
      }
      .cookie-learn:hover, .cookie-learn:focus {
      color: #8A84A8;
      outline: 2px solid #8A84A8;
      outline-offset: 2px;
      text-decoration: none;
      }
      @media (max-width: 768px) {
      .header-content {
      flex-direction: column;
      gap: 20px;
      text-align: center;
      }
      nav {
      justify-content: center;
      }
      .nav-list {
      justify-content: center;
      gap: 15px;
      }
      .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
      }
      .cookie-popup {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      right: auto;
      width: 85%;
      max-width: none;
      padding: 30px;
      }
      .cookie-popup h4 {
      font-size: 20px;
      }
      .cookie-popup p {
      font-size: 18px;
      line-height: 1.6;
      }
      .cookie-btn {
      padding: 15px 25px;
      font-size: 20px;
      min-height: 50px;
      }
      .cookie-buttons {
      gap: 15px;
      }
      .cookie-learn {
      font-size: 16px;
      padding: 12px;
      }
      }
      @media (max-width: 480px) {
      .container {
      padding: 0 15px;
      }
      .nav-list {
      flex-direction: column;
      gap: 10px;
      }
      .nav-list a {
      padding: 12px 20px;
      width: 100%;
      text-align: center;
      }
      }
      .error-page-wrapper {
      min-height: 100vh;
      background: linear-gradient(135deg, #DFDBEC 0%, #C0BBD7 100%);
      padding: 40px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      }
      .error-page-wrapper::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 35px,
      rgba(159, 154, 191, 0.1) 35px,
      rgba(159, 154, 191, 0.1) 70px
      );
      animation: subtle-drift 25s linear infinite;
      }
      @keyframes subtle-drift {
      0% { transform: translateX(0) translateY(0); }
      100% { transform: translateX(-70px) translateY(-70px); }
      }
      .error-content-container {
      background: rgba(255, 255, 255, 0.95);
      border-radius: 24px;
      padding: 60px 50px;
      max-width: 700px;
      width: 100%;
      text-align: center;
      position: relative;
      z-index: 10;
      box-shadow: 0 20px 60px rgba(159, 154, 191, 0.3);
      backdrop-filter: blur(10px);
      }
      .error-number-display {
      font-size: 8rem;
      font-weight: 900;
      color: #9F9ABF;
      line-height: 0.8;
      margin: 0 0 30px 0;
      text-shadow: 3px 3px 0 #C0BBD7;
      letter-spacing: -8px;
      background: linear-gradient(45deg, #9F9ABF, #C0BBD7);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      }
      .error-title-main {
      font-size: 2.2rem;
      color: #5A4B7C;
      margin: 0 0 20px 0;
      font-weight: 700;
      letter-spacing: -1px;
      }
      .error-description-text {
      font-size: 1.1rem;
      color: #6B5A82;
      line-height: 1.7;
      margin: 0 0 35px 0;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
      }
      .floating-chef-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #9F9ABF, #C0BBD7);
      border-radius: 50%;
      margin: 0 auto 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      animation: gentle-float 4s ease-in-out infinite;
      }
      @keyframes gentle-float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
      }
      .floating-chef-icon::before {
      content: '';
      font-size: 2.5rem;
      animation: rotate-utensil 6s linear infinite;
      }
      @keyframes rotate-utensil {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
      }
      .navigation-suggestions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin: 40px 0;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
      }
      .suggestion-link {
      background: linear-gradient(135deg, #DFDBEC, #C0BBD7);
      color: #5A4B7C;
      text-decoration: none;
      padding: 18px 24px;
      border-radius: 16px;
      font-weight: 600;
      transition: all 0.3s ease;
      border: 2px solid transparent;
      font-size: 0.95rem;
      }
      .suggestion-link:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(159, 154, 191, 0.4);
      border-color: #9F9ABF;
      background: linear-gradient(135deg, #C0BBD7, #9F9ABF);
      color: white;
      }
      .primary-home-button {
      background: linear-gradient(135deg, #9F9ABF, #7A6B9D);
      color: white;
      text-decoration: none;
      padding: 20px 40px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1.1rem;
      display: inline-block;
      margin: 30px 0;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(159, 154, 191, 0.4);
      border: none;
      cursor: pointer;
      }
      .primary-home-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 15px 40px rgba(159, 154, 191, 0.6);
      background: linear-gradient(135deg, #7A6B9D, #5A4B7C);
      }
      .helpful-content-section {
      background: linear-gradient(135deg, #F8F6FC, #DFDBEC);
      border-radius: 18px;
      padding: 30px;
      margin-top: 40px;
      border-left: 5px solid #9F9ABF;
      }
      .helpful-content-title {
      font-size: 1.3rem;
      color: #5A4B7C;
      margin: 0 0 20px 0;
      font-weight: 600;
      }
      .content-suggestions-list {
      text-align: left;
      color: #6B5A82;
      font-size: 1rem;
      line-height: 1.6;
      margin: 0;
      padding-left: 20px;
      }
      .content-suggestions-list li {
      margin-bottom: 8px;
      }
      .decorative-elements {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 100px;
      height: 100px;
      opacity: 0.3;
      }
      .decorative-circle {
      width: 40px;
      height: 40px;
      background: #9F9ABF;
      border-radius: 50%;
      position: absolute;
      animation: float-decoration 8s ease-in-out infinite;
      }
      .decorative-circle:nth-child(1) {
      top: 0;
      left: 0;
      animation-delay: 0s;
      }
      .decorative-circle:nth-child(2) {
      top: 20px;
      right: 0;
      width: 25px;
      height: 25px;
      background: #C0BBD7;
      animation-delay: 2s;
      }
      .decorative-circle:nth-child(3) {
      bottom: 0;
      left: 30px;
      width: 15px;
      height: 15px;
      background: #DFDBEC;
      animation-delay: 4s;
      }
      @keyframes float-decoration {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      33% { transform: translateY(-15px) rotate(120deg); }
      66% { transform: translateY(10px) rotate(240deg); }
      }
      @media (max-width: 768px) {
      .error-page-wrapper {
      padding: 20px 15px;
      min-height: 100vh;
      }
      .error-content-container {
      padding: 40px 30px;
      border-radius: 16px;
      }
      .error-number-display {
      font-size: 5rem;
      letter-spacing: -4px;
      margin-bottom: 20px;
      }
      .error-title-main {
      font-size: 1.8rem;
      margin-bottom: 15px;
      }
      .error-description-text {
      font-size: 1rem;
      margin-bottom: 25px;
      }
      .navigation-suggestions {
      grid-template-columns: 1fr;
      gap: 15px;
      margin: 30px 0;
      }
      .suggestion-link {
      padding: 15px 20px;
      font-size: 0.9rem;
      }
      .primary-home-button {
      padding: 16px 32px;
      font-size: 1rem;
      margin: 20px 0;
      }
      .helpful-content-section {
      padding: 25px 20px;
      margin-top: 30px;
      }
      .floating-chef-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 20px;
      }
      .floating-chef-icon::before {
      font-size: 2rem;
      }
      .decorative-elements {
      display: none;
      }
      }
      @media (max-width: 480px) {
      .error-content-container {
      padding: 30px 20px;
      }
      .error-number-display {
      font-size: 4rem;
      }
      .error-title-main {
      font-size: 1.5rem;
      }
      .primary-home-button {
      padding: 14px 28px;
      font-size: 0.95rem;
      }
      }