body {
      background: #111;
      color: #fff;
    }
    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }
    .section-title h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      color: #D4AF37;
    }
    .section-title p {
      color: #ccc;
      font-size: 1.1rem;
    }

    /* Featured News */
    .featured-news {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
    }
    .featured-news img {
      width: 100%;
      height: 450px;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .featured-news:hover img {
      transform: scale(1.08);
    }
    .featured-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 30px;
      background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    }
    .featured-overlay h3 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: #fff;
    }
    .featured-overlay p {
      color: #ddd;
      margin: 10px 0;
    }
    .featured-overlay .btn {
      background: #D4AF37;
      border: none;
      color: #111;
      font-weight: 600;
      border-radius: 50px;
      padding: 8px 20px;
      transition: all 0.3s ease;
    }
    .featured-overlay .btn:hover {
      background: #fff;
      color: #111;
    }

    /* News Grid */
    .news-item {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      background: #1a1a1a;
      transition: transform 0.3s ease;
    }
    .news-item img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .news-item:hover img {
      transform: scale(1.08);
    }
    .news-content {
      padding: 20px;
    }
    .news-content h4 {
      font-family: 'Playfair Display', serif;
      color: #fff;
      font-size: 1.4rem;
    }
    .news-content small {
      color: #aaa;
      display: block;
      margin-bottom: 10px;
    }
    .news-content p {
      font-size: 0.95rem;
      color: #ccc;
      margin-bottom: 15px;
    }
    .news-content .btn {
      background: transparent;
      border: 1px solid #D4AF37;
      color: #D4AF37;
      border-radius: 30px;
      padding: 6px 16px;
      font-size: 0.9rem;
      transition: all 0.3s ease;
    }
    .news-content .btn:hover {
      background: #D4AF37;
      color: #111;
    }