      * {
      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;
      }
      }
      .news-page-wrapper {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      overflow-x: hidden;
      }
      .news-hero-section {
      background: linear-gradient(135deg, #9F9ABF 0%, #C0BBD7 100%);
      padding: 60px 30px;
      margin-bottom: 50px;
      text-align: center;
      border-radius: 12px;
      position: relative;
      }
      .news-hero-title {
      font-size: 2.8rem;
      font-weight: 700;
      color: white;
      margin-bottom: 15px;
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
      letter-spacing: -0.5px;
      }
      .news-hero-subtitle {
      font-size: 1.2rem;
      color: rgba(255,255,255,0.9);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
      }
      .updates-timeline-section {
      margin-bottom: 60px;
      background: #DFDBEC;
      padding: 50px 40px;
      border-radius: 16px;
      position: relative;
      }
      .timeline-header {
      text-align: center;
      margin-bottom: 45px;
      }
      .timeline-title {
      font-size: 2.4rem;
      color: #9F9ABF;
      margin-bottom: 15px;
      font-weight: 600;
      }
      .timeline-description {
      font-size: 1.1rem;
      color: #666;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.7;
      }
      .timeline-container {
      position: relative;
      padding-left: 60px;
      }
      .timeline-line {
      position: absolute;
      left: 20px;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(180deg, #9F9ABF 0%, #C0BBD7 100%);
      }
      .timeline-item {
      position: relative;
      margin-bottom: 40px;
      background: white;
      padding: 25px 30px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(159,154,191,0.15);
      margin-left: 0;
      }
      .timeline-marker {
      position: absolute;
      left: -51px;
      top: 25px;
      width: 20px;
      height: 20px;
      background: #9F9ABF;
      border-radius: 50%;
      border: 4px solid white;
      z-index: 2;
      }
      .timeline-date {
      font-size: 0.9rem;
      color: #9F9ABF;
      font-weight: 600;
      margin-bottom: 8px;
      }
      .timeline-item-title {
      font-size: 1.4rem;
      color: #333;
      margin-bottom: 12px;
      font-weight: 600;
      }
      .timeline-content {
      color: #666;
      line-height: 1.6;
      font-size: 1rem;
      }
      .innovations-grid-section {
      margin-bottom: 60px;
      padding: 0;
      }
      .innovations-header {
      text-align: center;
      margin-bottom: 50px;
      padding: 40px 30px;
      background: linear-gradient(45deg, #DFDBEC 0%, #C0BBD7 100%);
      border-radius: 16px;
      }
      .innovations-title {
      font-size: 2.4rem;
      color: #9F9ABF;
      margin-bottom: 15px;
      font-weight: 600;
      }
      .innovations-subtitle {
      font-size: 1.1rem;
      color: #666;
      max-width: 650px;
      margin: 0 auto;
      line-height: 1.7;
      }
      .innovations-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      padding: 0 20px;
      }
      .innovation-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(159,154,191,0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      }
      .innovation-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 35px rgba(159,154,191,0.3);
      }
      .innovation-image {
      width: 100%;
      height: 220px;
      background-size: cover;
      background-position: center;
      position: relative;
      }
      .innovation-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(159,154,191,0.8) 0%, rgba(192,187,215,0.6) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      }
      .innovation-category {
      background: white;
      color: #9F9ABF;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      }
      .innovation-content {
      padding: 30px;
      }
      .innovation-date {
      font-size: 0.9rem;
      color: #9F9ABF;
      margin-bottom: 10px;
      font-weight: 500;
      }
      .innovation-card-title {
      font-size: 1.3rem;
      color: #333;
      margin-bottom: 15px;
      font-weight: 600;
      line-height: 1.4;
      }
      .innovation-text {
      color: #666;
      line-height: 1.6;
      font-size: 0.95rem;
      margin-bottom: 20px;
      }
      .innovation-features {
      list-style: none;
      padding: 0;
      margin: 0;
      }
      .innovation-features li {
      color: #666;
      font-size: 0.9rem;
      margin-bottom: 8px;
      padding-left: 20px;
      position: relative;
      }
      .innovation-features li:before {
      content: "•";
      color: #9F9ABF;
      position: absolute;
      left: 0;
      font-weight: bold;
      }
      .testimonials-section {
      background: #9F9ABF;
      padding: 60px 40px;
      border-radius: 16px;
      text-align: center;
      margin-bottom: 40px;
      }
      .testimonials-title {
      font-size: 2.2rem;
      color: white;
      margin-bottom: 15px;
      font-weight: 600;
      }
      .testimonials-subtitle {
      color: rgba(255,255,255,0.9);
      font-size: 1.1rem;
      margin-bottom: 40px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
      }
      .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 900px;
      margin: 0 auto;
      }
      .testimonial-card {
      background: white;
      padding: 30px 25px;
      border-radius: 12px;
      text-align: left;
      position: relative;
      }
      .testimonial-quote {
      font-size: 1rem;
      color: #666;
      line-height: 1.6;
      margin-bottom: 20px;
      font-style: italic;
      }
      .testimonial-author-section {
      display: flex;
      align-items: center;
      gap: 15px;
      }
      .testimonial-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-size: cover;
      background-position: center;
      border: 3px solid #DFDBEC;
      }
      .testimonial-info h4 {
      font-size: 1rem;
      color: #333;
      margin: 0 0 5px 0;
      font-weight: 600;
      }
      .testimonial-role {
      font-size: 0.85rem;
      color: #9F9ABF;
      margin: 0;
      font-weight: 500;
      }
      @media (max-width: 768px) {
      .news-page-wrapper {
      padding: 0 15px;
      }
      .news-hero-section {
      padding: 40px 25px;
      margin-bottom: 35px;
      }
      .news-hero-title {
      font-size: 2.2rem;
      }
      .news-hero-subtitle {
      font-size: 1.1rem;
      }
      .updates-timeline-section {
      padding: 35px 25px;
      margin-bottom: 40px;
      }
      .timeline-title, .innovations-title, .testimonials-title {
      font-size: 2rem;
      }
      .timeline-container {
      padding-left: 40px;
      }
      .timeline-marker {
      left: -31px;
      width: 16px;
      height: 16px;
      }
      .timeline-line {
      left: 10px;
      }
      .timeline-item {
      padding: 20px 20px;
      margin-bottom: 30px;
      }
      .innovations-grid {
      grid-template-columns: 1fr;
      gap: 25px;
      padding: 0 10px;
      }
      .innovation-image {
      height: 180px;
      }
      .innovation-content {
      padding: 25px 20px;
      }
      .testimonials-section {
      padding: 40px 25px;
      }
      .testimonials-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      }
      .testimonial-card {
      padding: 25px 20px;
      }
      }
      @media (max-width: 480px) {
      .innovations-grid {
      grid-template-columns: 1fr;
      }
      .timeline-container {
      padding-left: 35px;
      }
      .timeline-marker {
      left: -26px;
      width: 14px;
      height: 14px;
      }
      .timeline-line {
      left: 8px;
      }
      .news-hero-title {
      font-size: 1.9rem;
      }
      }