/* Content container for the text and image Home page */
/* Hero Section Styling for Home */
.hero-section {
    background-color: #476DB0;
    color: white;
    text-align: center;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
  }
  
  .hero-text {
    flex: 1;
    text-align: left;
    margin-bottom: 2rem;
  }
  
  .hero-text h1 {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.2;
    margin-right: 4rem;
  }
  
  .hero-subtext {
    font-size: 24px;
    margin-top: 15px;
    line-height: 1.3;
  }
  
  .full-width-image {
    width: 100vw;
    max-width: 100%;
    margin-top: 20px;
  }
  
  
  /* Container max width for the layout */
  .max-width-container {
    max-width: 1200px;
  }
  
  /* Video Placeholder Styling */
  .video-container {
    width: 100%;
    height: 300px;
    border: 2px dashed #476DB0;
    font-size: 1.5rem;
    color: #476DB0;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
  }
  
  /* How it works title styling */
  .how-it-works-title {
    font-size: 24px;
    color: black;
    margin-bottom: 2rem;
    text-align: center;
    text-decoration: underline #4CB047;
  }
  
  /* Steps Section Styling */
  .step-number {
    font-size: 110px;
    color: #476DB0;
    font-weight: bold;
    line-height: 1;
    margin-right: 1rem;
    margin-top: -0.5rem;
    margin-left: 5rem;
  }
  
  .step-title {
    font-size: 30px;
    font-weight: 600;
  }
  
  .step-paragraph {
    font-size: 20px;
    font-weight: 400;
  }
  
  /* Download Button Styling */
  .download-btn {
    display: inline-flex;
    align-items: center;
    border: 2px solid #476DB0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    margin-top: 0.5rem;
    padding: 0;
    height: 50px;
  }
  
  .download-btn-text {
    background-color: #ffffff;
    padding: 0.8rem 1.2rem;
    font-size: 22px;
    color: #000;
    display: flex;
    align-items: center;
    line-height: 1;
    font-weight: 400;
  }
  
  .download-btn-icon {
    background-color: #476DB0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 100%;
    padding: 0;
    transition: background-color 0.3s;
  }
  
  .download-btn-icon img {
    width: 28px;
    height: 28px;
  }
  
  .download-btn:hover .download-btn-icon {
    background-color: #4CB047;
  }
  
  .download-btn:hover {
    border-color: #4CB047;
  }
  
  .download-btn:active .download-btn-icon {
    background-color: #4CB047;
  }
  
  /* HMRC Recognition */
  .recognized-hmrc {
    font-size: 1.2rem;
    color: #476DB0;
    text-align: center;
  }
  
  .recognized-hmrc img {
    width: 200px;
    margin-right: 0.5rem;
  }
  