img {
    max-width: 100%; /* Ensure the image does not exceed the container's width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Adjust this value to increase or decrease the roundness */
}

  
html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* Prevent horizontal overflow */
}

/* Header Section */
#sticky-banner {
    display: none;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #ffffff; /* white background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* enhanced shadow for more depth */
    border-bottom: 1px solid #ff7b00; /* primary color border */
    z-index: 1000;
    padding: 0 20px; /* padding for breathing space around the contents */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}



/* Use a media query to display the header on desktops */
@media (min-width: 992px) { /* This width can be adjusted based on your design requirements */
    #sticky-banner {
        display: flex; /* or your original display type */
    }
}


#back-link {
    color: #000000; /* black text */
    text-decoration: none;
    padding: 8px 12px; /* reduced padding */
    display: block;
    transition: background-color 0.3s, border-radius 0.3s; /* added transition for border-radius */
    border-radius: 4px; /* rounded corners */
}

#back-link:hover {
    background-color: #d3d3d3; /* light gray for hover effect */
}

.logo {
    padding: 10px; /* added padding around the logo */
}

.logo img {
    height: 40px; /* Adjust based on your logo's dimensions */
}

.tm {
    font-size: 0.5em; /* Smaller font size for the trademark symbol */
    vertical-align: super; /* Align trademark symbol with the top of the text */
}


/* Footer Section */
footer {
    background-color: #f0f0f0;
    padding: 5px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto 10px;
}

.footer-left, .footer-center, .footer-right {
    display: flex;
    align-items: center;
}

.footer-left, .footer-right {
    gap: 20px;
}

.footer-left a, .footer-right p, .footer-contact p, .footer-contact a {
    color: #333;
    text-decoration: none;
}

.footer-left a:hover, .footer-contact a:hover {
    color: #ff7b00; /* match the theme's primary color */
    text-decoration: underline;
}

.footer-center img {
    width: 50px; /* Logo size adjusted */
}

.footer-right p {
    margin: 0;
    text-align: right;
}

/* ---------------
   Hero Section
--------------- */
#chatask-hero {
    text-align: center;
    background: #fafafa; /* Or use an image background if desired */
    padding: 80px 20px;
  }
  #chatask-hero h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
  #chatask-hero .subtitle {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #555;
  }
  #chatask-hero .hero-text {
    max-width: 700px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem;
    color: #666;
  }
  #chatask-hero .cta-button {
    background-color: #ff7b00;
    border: none;
    color: #fff;
    padding: 15px 30px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
  }
  #chatask-hero .cta-button:hover {
    background-color: #e66d00;
  }
  
  /* ---------------
     Introduction
  --------------- */
  #chatask-introduction {
    max-width: 800px;
    margin: 50px auto;
    padding: 0 20px;
  }
  #chatask-introduction h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  #chatask-introduction p {
    margin-bottom: 15px;
    font-size: 1rem;
  }
  
  /* ---------------
     Key Benefits
  --------------- */
  #chatask-benefits {
    background-color: #ffffff;
    border-top: 1px solid #eee;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  #chatask-benefits h2 {
    margin-bottom: 30px;
  }
  .benefit-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 800px;
    text-align: left;
  }
  .benefit-list li {
    margin-bottom: 20px;
  }
  .benefit-list strong {
    color: #ff7b00;
    font-weight: bold;
  }
  
  /* ---------------
     How It Works
  --------------- */
  #chatask-how-it-works {
    background: #fafafa;
    padding: 50px 20px;
    text-align: center;
  }
  #chatask-how-it-works h2 {
    margin-bottom: 30px;
  }
  .steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .step {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    flex: 0 0 220px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  }
  .step h3 {
    color: #ff7b00;
    margin-top: 0;
  }
  
  /* ---------------
     CTA Section
  --------------- */
  #chatask-cta {
    background-color: #fff3e6; /* Light orange tint */
    padding: 60px 20px;
    text-align: center;
  }
  #chatask-cta h2 {
    margin-bottom: 15px;
  }
  #chatask-cta p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
  }
  #chatask-cta .cta-button {
    background-color: #ff7b00;
    border: none;
    color: #fff;
    padding: 15px 30px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
  }
  #chatask-cta .cta-button:hover {
    background-color: #e66d00;
  }
  
  /* ---------------
     Responsiveness
  --------------- */
  @media (max-width: 768px) {
    #chatask-hero {
      padding: 60px 10px;
    }
    #chatask-hero h1 {
      font-size: 2rem;
    }
    #chatask-hero .subtitle {
      font-size: 1.3rem;
    }
    .steps-container {
      flex-direction: column;
      align-items: center;
    }
    .step {
      width: 80%;
      margin-bottom: 20px;
    }
  }