* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    h1 {
      text-align: center;
      margin-bottom: 50px;
      font-size: 2.5em;
      color: #111;
    }

    .news-container {
      display: flex;
      flex-direction: column;
      gap: 50px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .news-item {
      display: flex;
      align-items: center;
      gap: 30px;
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .news-item:hover {
      transform: scale(1.01);
    }

    .news-item:nth-child(even) {
      flex-direction: row-reverse;
    }

    .news-image {
      flex: 1;
      min-height: 250px;
      background-size: cover;
      background-position: center;
    }

    .news-content {
      flex: 1;
      padding: 30px;
    }

    .news-content h2 {
      font-size: 1.8em;
      margin-bottom: 15px;
      color: #222;
    }

    .news-content p {
      font-size: 1.05em;
      line-height: 1.6;
      color: #555;
    }

    @media (max-width: 768px) {
      .news-item {
        flex-direction: column !important;
      }

      .news-image {
        width: 100%;
        height: 200px;
      }

      .news-content {
        padding: 20px;
      }
    }