.container {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 8px;
  }
  
  .section-title {
    color: #7bb0ff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    
  }
  
  /* Header Styles */
  .header-logo {
    text-align: center;
    margin: 2rem 0;
  }
  
  
  
  /* News Item Styles */
  .news-item {
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 2rem;
  }
  
  .news-title {
    color: #7bb0ff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s ease;
  }
  
  .news-title:hover {
    color: #7bb0ff;
  }
  
  .news-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
  }
  
  .news-summary {
    font-size: 1rem;
    color: #bbb;
    margin-bottom: 1rem;
  }
  
  .news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
  }
  
  .news-date {
    color: #888;
  }
  
  .read-more {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: transparent;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid #fff;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .read-more:hover {
    background-color: #7bb0ff;
    transform: translateY(-2px);
    color: #fff;
  }
  
  /* Popular News Styles */
  .popular-list {
    list-style: none;
    padding: 0;
  }
  
  .popular-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }
  
  .popular-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-right: 1rem;
    border-radius: 4px;
  }
  
  .popular-content {
    flex: 1;
  }
  
  .popular-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #7bb0ff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .popular-title:hover {
    color: #7bb0ff;
  }
  
  /* Other News Styles */
  .other-news-list {
    list-style: none;
    padding: 0;
  }
  
  .other-news-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
  }
  
  .other-news-title {
    font-size: 1.1rem;
    color: #7bb0ff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .other-news-title:hover {
    color: #7bb0ff;
  }
  
  /* Responsive iframe */
  .responsive-iframe {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 1rem;
  }
  
  .responsive-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  
  /* Responsive Adjustments */
  @media screen and (max-width: 39.9375em) {
    .popular-item {
      flex-direction: column;
    }
  
    .popular-image {
      width: 100%;
      height: auto;
      margin-right: 0;
      margin-bottom: 1rem;
    }
  }
  
  
  






