/* CustomFooter.css for use with imported background image */
/* Note: When using imported image and inline style, remove the background-image property below */

.customfooter-container {
    /* The background image is set inline in the component */
    background-size: cover;
    background-position: center;
    padding: 30px 0;
    color: white;
    position: relative;
  }
  .customfooter-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  /* Rest of CSS remains the same */
  .customfooter-logo-container {
    display: flex;
    align-items: center;
  }
  
  .customfooter-logo {
    width: 70px;
    height: 70px;
  }
  
  .customfooter-company-info {
    margin-left: 15px;
    border-left: 2px solid white;
    padding-left: 15px;
  }
  
  .customfooter-company-name {
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.2;
  }
  
  .customfooter-company-tagline {
    font-size: 0.9rem;
    margin-top: 5px;
  }
  
  .customfooter-vertical-line {
    width: 1px;
    background-color: white;
    height: 150px;
    margin: 0 auto;
  }
  
  .customfooter-cta-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
  
  .customfooter-cta-heading {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .customfooter-cta-button {
    background-color: white;
    color: #ef5b2d;
    font-weight: bold;
    padding: 8px 25px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 15px;
    text-decoration: none;
    border: none;
    text-align: center;
    width: fit-content;
    margin: 0 auto 15px;
  }
  
  .customfooter-cta-button:hover {
    background-color: #f8f8f8;
    color: #d74d20;
  }
  
  .customfooter-cta-subtext {
    font-style: italic;
    font-size: 0.9rem;
  }
  
  /* Responsive adjustments */
  @media (max-width: 767px) {
    .customfooter-vertical-line {
      width: 100%;
      height: 1px;
      margin: 20px 0;
    }
    
    .customfooter-cta-container {
      text-align: center;
      margin-top: 20px;
    }
    
    .customfooter-logo-container {
      justify-content: center;
    }
  
    .customfooter-cta-button {
      margin: 0 auto 15px;
    }
  }