.footer1 {
    background-color: #D32F2F; /* Red background */
    color: white;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  
  .footer1-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .footer1-left {
    flex: 1;
  }
  
  .footer1-left h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .footer1-left p {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
  }
  
  .footer1-right {
    flex: 1;
    text-align: right;
  }
  
  .footer1-right h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #fff;
  }
  
  .footer1-call {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: white;
    text-decoration: none;
  }

  .footer1-right a:hover {
    color: white;
    text-decoration: underline;
  }
  
  .footer1-help {
    display: flex;
    align-items: center;
    justify-content: right;
    margin-top: 10px;
  }
  
  .help-icon {
    width: 20px;
    margin-right: 5px;
  }
  
  .footer1-bottom {
    border-top: 1px solid white;
    margin-top: 30px;
    padding-top: 10px;
    text-align: center;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
  }

  .footer1-bottom p {
    color: #fff;
  }
  
  .footer1-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
  }
  
  .footer1-links a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Design */
  @media (min-width: 768px) {
    .footer1-container {
      flex-direction: row;
      justify-content: space-between;
    }
  }
  
  @media (max-width: 767px) {
    .footer1-right {
      text-align: left;
    }
  
    .footer1-help {
      justify-content: left;
    }
  }
  