.modern-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    gap: 40px;
  }
  
  .content-section {
    flex: 1;
    padding-right: 30px;
  }
  
  .content-section h2 {
    font-size: 32px;
    color: #313669;
    margin-bottom: 20px;
    font-weight: 700;
  }
  
  .description {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 16px;
  }
  
  .explore-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(90deg, #003A7A, #313669);
    color: white !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 58, 122, 0.3);
    border: none;
    cursor: pointer;
  }
  
  .explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 58, 122, 0.4);
    color: white !important;
    background: linear-gradient(90deg, #003A7A, #313669);
  }
  
  .cards-container {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .full-width-card {
    width: 100%;
  }
  
  .cards-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  /* Updated card styles to make entire card clickable */
  .modern-card {
    display: block;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
  }
  
  .modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  }
  
  .modern-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-bottom: 1px solid #f0f0f0;
  }
  
  /* Larger image for full-width card */
  .full-width-card img {
    height: 180px;
    object-fit: fill; 
    background-color: #f8f8f8; /* Added background for better visibility */
  }
  
  .card-content {
    padding: 5px 15px 5px 15px;
    text-align: center;
  }
  
  .card-content h3 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 16px;
  }
  
  .card-content p {
    margin: 0;
    color: #7f8c8d;
    font-size: 14px;
  }
  
  @media (max-width: 900px) {
    .modern-container {
      flex-direction: column;
      gap: 30px;
    }
    
    .content-section {
      padding-right: 0;
      text-align: center;
    }
    
    .cards-section {
      width: 100%;
    }
  }
  
  @media (max-width: 600px) {
    /* .cards-section {
      grid-template-columns: 1fr;
    } */
    .full-width-card img {
    height: 110px;
  }
  .card-content p {
      font-size: 12px;
  }
  
  }