 .btn-container {
    display: flex;
    flex-wrap: wrap;         
    justify-content: center;  
    gap: 12px;                
    margin-top: 20px;
  }

  .btn {
    display: inline-block;
    width: 220px;              
    padding: 15px 0;
    background-color: #327291;
    color: #ffffff !important;  
    font-size: 17px;
    text-align: center;
    text-decoration: none !important; 
    
    transition: background-color 0.3s ease;
  }

  .btn:hover {
    background-color: #295d76;
    color: #ffffff !important;   
    text-decoration: none !important;
  }

