.news-ticker {
      width: 100%;
      max-width: 1320px;
      margin: 20px auto;
      background-color: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .news-container {
      display: flex;
      white-space: nowrap;
      animation: scroll 30s linear infinite;
    }

    .news-item {
      padding: 10px 20px;
      font-family: 'Roboto', sans-serif;
      font-size: 14px;
      color: #333;
      margin-right: 40px;
    }

    @keyframes scroll {
      0% { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
    }
