/* VAT Upload Page Hero Section Styling */
/* Default styles for larger screens */
.vat-hero-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 4rem;
  }
  
  .vat-hero-overlay {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  
  .text-box, .first-box {
    background-color: #ffffff;
    border: 2px solid #476DB0;
    border-radius: 8px;
    padding: 1.5rem;
    max-width: 90%;
    font-size: 20px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin: 1.5rem auto;
  }
  
  .first-box {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    padding: 1rem;
    background-color: #ffffff;
    border: 2px solid #476DB0;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    width: 655px;
    text-align: center;
  }
  
  .text-box {
    padding: 1rem;
    border: 2px solid #476DB0;
    border-radius: 8px;
    font-size: 20px;
    max-width: 100%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 655px;
    text-align: center;
  }
  
  .text-box-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .vat-hero-section img {
    width: 100vw;
    height: auto;
  }
  
  /* Styles for larger button on the VAT page */
  .download-btn.vat-large-btn {
    height: 60px !important;
    font-size: 30px !important;
  }
  
  .download-btn.vat-large-btn .download-btn-text {
    padding: 1rem 1.5rem !important;
  }
  
  .download-btn.vat-large-btn .download-btn-icon {
    width: 60px !important;
    height: 100% !important;
  }
  
  .download-btn.vat-large-btn .download-btn-icon img {
    width: 32px !important;
    height: 32px !important;
  }
  
  
  
  /* Instructions Dropdown Button */
  .instructions-btn {
    background-color: #476DB0;
    color: white;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
    padding: 1rem;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 655px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    margin: 1rem auto 0;
    height: 35px;
  }
  
  /* Icon on the Left with Smaller Size */
  .instructions-btn img {
    width: 20px;
    height: 10px;
    margin-right: 8px;
    transition: transform 0.3s ease;
  }
  
  .instructions-btn.open img {
    transform: rotate(180deg);
  }
  
  /* Instructions Content */
  .instructions-content {
    background-color: #ffffff;
    border: 2px solid #476DB0;
    border-radius: 8px;
    padding: 1.5rem;
    max-width: 555px;
    text-align: left;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin: 1rem auto;
  }
  
  .instructions-content.show {
    opacity: 1;
    max-height: 1000px;
  }
  
  .instructions-content h2 {
    font-size: 22px;
    color: #476DB0;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
  }
  
  .instructions-content ol {
    padding-left: 1.5rem;
    list-style: decimal;
  }
  
  .instructions-content ol ol {
    padding-left: 1.5rem;
    list-style: lower-alpha;
  }
  
  .instructions-content p {
    font-size: 18px;
    color: #333333;
    margin-bottom: 0.5rem;
  }
  
  .instructions-content strong {
    color: #476DB0;
  }
  
  .instructions-content em {
    font-style: italic;
    color: #476DB0;
  }
  
  .instructions-content li {
    margin: 1rem;
  }
  
  /* Font Awesome Icons for Instructions */
  .icon-download::before, .icon-folder::before, .icon-lock::before, .icon-open::before, .icon-save::before {
    font-family: 'FontAwesome';
    color: #476DB0;
    margin-right: 0.5rem;
  }
  
  .icon-download::before { content: '\f019'; }
  .icon-folder::before { content: '\f07b'; }
  .icon-lock::before { content: '\f023'; }
  .icon-open::before { content: '\f115'; }
  .icon-save::before { content: '\f0c7'; }
  
  /* Media Queries for Dropdown on Smaller Screens */
  @media (max-width: 768px) {
    .instructions-btn {
      font-size: 18px;
      padding: 0.8rem 1.5rem;
    }
  
    .instructions-content {
      padding: 1rem;
      max-width: 100%;
    }
  }
  
  /* Media queries for smaller screens */
  @media (max-width: 1024px) {
    .vat-hero-overlay {
        top: 30%;
    }
  
    .vat-download-btn {
        font-size: 16px;
        height: 45px;
    }
  
    .first-box {
        top: 80%;
        max-width: 90%;
        font-size: 14px;
        padding: 0.8rem;
    }
  
    .text-box-container {
        margin-top: 2rem;
    }
  
    .text-box {
        max-width: 90%;
        font-size: 14px;
        padding: 0.8rem;
    }
  }
  
  #instructions-content {
    display: none;
    transition: all 0.3s ease-in-out;
  }
  
  #instructions-content.show {
    display: block;
  }
  
  
  /* Media queries for very small screens (mobile) */
  @media (max-width: 768px) {
    .vat-hero-overlay {
        top: 25%;
        gap: 1rem;
    }
  
    .first-box {
        top: 95%;
        max-width: 100%;
        font-size: 12px;
        padding: 0.5rem;
    }
  
    .text-box-container {
        margin-top: 1.5rem;
    }
  
    .text-box {
        max-width: 100%;
        font-size: 12px;
        padding: 0.5rem;
    }
  }