/* BannerPage.css */

body {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  .banner-container {
    display: flex;
    flex-direction: column;
    background: linear-gradient(to right, #1a237e, #283593);
    color: white;
    padding: 20px;
    text-align: center;
  }
  
  .banner-content {
    margin-bottom: 20px;
  }
  
  .banner-text {
    font-size: 1.2em;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .talk-button {
    background-color: #f50057;
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .talk-button:hover {
    background-color: #c51162;
  }
  
  .info-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
  }
  
  .icon-placeholder {
    font-size: 2em;
    margin-bottom: 10px;
  }
  
  p {
    margin: 0;
  }
  