/* Social Media Section Styling */
/*.social-media-section {
    background-color: #f5f7fa;
  }
  
  .social-media-section h2 {
    color: #003087;
    font-weight: 600;
    font-family: 'museo_sans700';
    font-size: 30px;
    margin-bottom: 60px;
  }
  
  .social-box {
    height: 400px; 
    border-radius: 8px;
    transition: transform 0.3s ease;
  }
  
  .social-box:hover {
    transform: translateY(-5px);
  }
  
  .social-box i {
    color: #003087;
  }
  
  .social-box h4 {
    font-size: 1.25rem;
    color: #003087; 
  }
  
  .social-box p {
    font-size:16px;
    color: #333;
  }
  
  .social-box .btn-outline-primary {
    border-color: #003087;
    color: #003087;
  }
  
  .social-box .btn-outline-primary:hover {
    background-color: #003087;
    color: #fff;
  }
  

  @media (max-width: 767px) {
    .social-box {
      height: 300px; 
      margin-bottom: 1rem;
    }
  }*/