 <style>
      /* Global Styles */
      :root {
        /* Brand Colors */
        --main-color: #07484a;
        --accent-color: #45d4d0;
        --gold-color: #f9b700;
        /* Backgrounds */
        --light-teal: #cdeeee;
        --hover-teal: #bde5e5;
        --soft-mint: #e6f3f3;
        /* Text Colors */
        --dark-gold-text: #3a2e00;
        --hover-dark-text: #4a3b00;
        /* Effects */
        --gold-glow: #f7c94899;
        --text-glow: #f7c948aa;
      }

      body {
        margin: 0;
        font-family: 'Segoe UI', sans-serif;
        background-color: #fffef9;
        color: #07484a;
        padding: 1.5rem 1rem 3rem 1rem;
      }

      /* Header */
      header {
        background-image: url('https://i.imgur.com/2qneT5X.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        color: white;
        padding: 0;
        font-family: Arial, sans-serif;
      }

      /* Contact top bar — NO background image here */
      .contact-top {
        display: flex;
        justify-content: flex-end;
        padding: 0.5rem 2rem;
      }

      .contact-top a {
        color: white;
        text-decoration: none;
        font-size: 1rem;
        margin-left: 1.5rem;
        white-space: nowrap;
        display: flex;
        align-items: center;
      }

      .contact-top a i {
        margin-right: 0.5rem;
        font-size: 1.2rem;
        color: #0bb;
      }

      .contact-top a:hover {
        text-decoration: underline;
      }

      /* Logo & Tagline Branding */
      .branding {
        display: flex;
        align-items: center;
        /* vertically center tagline with logo */
        gap: 1rem;
        /* space between logo and tagline */
        padding: 1.5rem 2rem 1rem 2rem;
        animation: fadeIn 2s ease forwards;
      }

      .logo-img {
        height: 90px;
        max-width: 100%;
        display: block;
      }

      .branding {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem 2rem 1rem 2rem;
        animation: fadeIn 2s ease forwards;
      }

      /* New container for company name and tagline stacked vertically */
      .branding-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      /* Company name in caps, bold, white with shadow, size smaller than .company-name */
      .company-name-header {
        font-weight: 900;
        font-size: 1.6rem;
        color: white;
        text-transform: uppercase;
        text-shadow: 1px 1px 3px gold;
        margin-bottom: 0.3rem;
        /* spacing below company name */
        user-select: none;
      }

      /* Adjust tagline to move it down a bit */
      .tagline {
        font-size: 0.7rem;
        font-weight: 500;
        color: #e0f7f6;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0;
        animation: fadeIn 2s ease forwards;
        animation-delay: 1s;
        user-select: none;
      }

      /* Responsive tweaks */
      @media (max-width: 768px) {
        .branding {
          flex-direction: column;
          text-align: center;
          gap: 0.5rem;
        }

        .branding-text {
          flex-direction: column;
        }

        .company-name-header {
          font-size: 1.4rem;
        }

        .tagline {
          font-size: 0.8rem;
          animation-delay: 0;
        }
      }

      .tagline {
        font-size: 0.7rem;
        /* smaller text */
        font-weight: 500;
        color: #e0f7f6;
        /* soft light teal */
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0;
        /* start hidden for fade-in */
        animation: fadeIn 2s ease forwards;
        animation-delay: 1s;
        /* fade in after logo */
      }

      /* Fade-in keyframes */
      @keyframes fadeIn {
        to {
          opacity: 1;
        }
      }

      /* Responsive */
      @media (max-width: 768px) {
        .branding {
          flex-direction: column;
          text-align: center;
          gap: 0.5rem;
        }

        .tagline {
          font-size: 0.8rem;
          animation-delay: 0;
          /* fade-in together on small screens */
        }
      }

      /* Navigation */
      nav {
        display: flex;
        justify-content: center;
        gap: 2rem;
        padding: 0.5rem 0;
        background-color: #e6f3f3;
        /* Light mint tint */
      }

      nav a {
        text-decoration: none;
        color: #07484a;
        font-weight: 600;
        font-size: 1.1rem;
        cursor: pointer;
        animation: fadeSlideIn 1s ease forwards;
      }

      nav a.active {
        color: #ffd700;
        /* or your brand highlight color */
        font-weight: bold;
        text-decoration: underline;
      }

      nav a:hover,
      nav a:focus {
        text-decoration: underline;
        /* Reinforces visual link cue */
        outline: 3px solid #55a4a4;
        /* Ensures keyboard users see focus */
        outline-offset: 2px;
      }

      /* Staggered animation delays */
      nav a:nth-child(1) {
        animation-delay: 0s;
      }

      nav a:nth-child(2) {
        animation-delay: 0.1s;
      }

      nav a:nth-child(3) {
        animation-delay: 0.2s;
      }

      nav a:nth-child(4) {
        animation-delay: 0.3s;
      }

      nav a:nth-child(5) {
        animation-delay: 0.4s;
      }

      nav a:nth-child(6) {
        animation-delay: 0.5s;
      }

      /* Animation keyframes */
      @keyframes fadeSlideIn {
        0% {
          opacity: 0;
          transform: translateX(-20px);
        }

        100% {
          opacity: 1;
          transform: translateX(0);
        }
      }

      /* Accessibility: Focus styles */
      nav a:focus,
      button:focus,
      a:focus {
        outline: 3px solid #0bb;
        outline-offset: 2px;
        box-shadow: 0 0 5px 2px #0bb;
      }

      .company-name {
        font-size: 4rem;
        font-weight: 900;
        color: white;
        text-shadow: 2px 2px 6px gold;
        letter-spacing: 2px;
        text-align: center;
        margin: 0;
        padding: 3rem 0;
        transition: transform 0.3s ease, text-shadow 0.3s ease;
      }

      .company-name:hover {
        transform: scale(1.05);
        text-shadow: 0 0 10px gold, 0 0 20px #fff;
      }

      <title>Why Work With Us – Ameen Accounting</title>* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #1f4c47;
        background: #fefcf9;
        background-size: cover;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-position: center;
        line-height: 1.6;
      }

      .container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 2rem;
      }

      .card {
        background-color: #e6f4f3;
        border-radius: 12px;
        padding: 2rem;
        margin-bottom: 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      }

      h1,
      h2,
      h3 {
        color: #153f3a;
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }

      h1 {
        font-size: 2.2rem;
        font-weight: 700;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
        border-bottom: 4px solid #ffd700;
        /* Bright gold underline */
      }

      h2 {
        font-size: 2.2rem;
        font-weight: 700;
        margin-top: 1rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 4px solid #ffd700;
        /* Bright gold underline */
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }

      .card ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .card ul li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
      }

      .card ul li i[data-lucide] {
        flex-shrink: 0;
        margin-top: 0.2rem;
        color: #004d4d;
        /* Or whatever color you use for icons */
      }

      .card ul li span {
        display: inline-block;
        line-height: 1.6;
      }

      .comparison-table {
        width: 100%;
        border-collapse: collapse;
        font-family: var(--font-base, 'Inter', sans-serif);
        color: #004d4d;
        margin: 2rem auto 0 auto;
        max-width: 1000px;
        animation: fadeInUp 1s ease-out both;
      }

      .comparison-table th,
      .comparison-table td {
        border: 1px solid #ddd;
        padding: 1rem;
        text-align: left;
        vertical-align: top;
      }

      .comparison-table thead th {
        background-color: #004d4d;
        color: white;
        font-weight: 700;
        font-size: 1rem;
      }

      .comparison-table tbody tr {
        transition:
          background-color 0.35s ease,
          box-shadow 0.35s ease,
          transform 0.35s ease,
          color 0.35s ease;
        cursor: pointer;
      }

      .comparison-table tbody tr:hover {
        background-color: #d0e8e8;
        /* soft teal */
        box-shadow: 0 4px 8px rgba(0, 77, 77, 0.15);
        /* subtle shadow */
        transform: scale(1.02);
        color: #003333;
        /* slightly darker text */
        font-weight: 600;
        border-left: 4px solid #009999;
        /* accent border on left */
      }

      /* Optional: smooth zebra stripe colors */
      .comparison-table tbody tr:nth-child(even) {
        background-color: #f7fafa;
        /* very soft off-white */
      }

      .comparison-table tbody tr:nth-child(odd) {
        background-color: #e8f4f4;
        /* light teal tint */
      }

      .comparison-table i[data-lucide] {
        color: #ffd700;
        font-size: 1.2rem;
      }

      /* Fade-in from bottom animation */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Fade-in effect on table */
      .comparison-table {
        width: 100%;
        border-collapse: collapse;
        font-family: var(--font-base, 'Inter', sans-serif);
        color: #004d4d;
        margin: 2rem auto 0 auto;
        max-width: 1000px;
        animation: fadeInUp 1s ease-out both;
      }

      /* Table header and cells */
      .comparison-table th,
      .comparison-table td {
        border: 1px solid #ddd;
        padding: 1rem;
        text-align: left;
        vertical-align: top;
      }

      /* Table header row */
      .comparison-table thead th {
        background-color: #004d4d;
        color: white;
        font-weight: 700;
        font-size: 1rem;
      }

      /* Zebra striping */
      .comparison-table tbody tr:nth-child(even) {
        background-color: #f9f9f9;
      }

      /* Lucide icon styling */
      .comparison-table i[data-lucide] {
        color: #ffd700;
        font-size: 1.2rem;
      }

      /* 🔥 Hover animation for rows */
      .comparison-table tbody tr {
        transition: background-color 0.3s ease, transform 0.3s ease;
      }

      .comparison-table tbody tr:hover {
        background-color: #e6f2f2;
        /* Light teal background */
        transform: scale(1.01);
        /* Slight zoom on hover */
      }

      .included-tooltip {
        cursor: help;
      }

      .included-services {
        padding: 2rem 1rem;
        text-align: center;
        color: #004d4d;
        font-family: var(--font-base, 'Inter', sans-serif);
        max-width: 800px;
        margin: 0 auto;
        animation: fadeInUp 1s ease-out both;
      }

      .included-services h3 {
        font-size: 1.6rem;
        font-weight: 700;
        color: #004d4d;
        margin-bottom: 1rem;
      }

      .included-services ul {
        list-style: none;
        padding: 0;
        margin: 1rem 0;
        display: grid;
        gap: 0.75rem;
        justify-content: center;
      }

      .included-services li {
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        font-size: 1rem;
        font-weight: 500;
        color: #004d4d;
        line-height: 1.5;
        max-width: 500px;
        margin: 0 auto;
        text-align: left;
      }

      .included-services li i[data-lucide] {
        color: #ffd700;
        font-size: 1.2rem;
        flex-shrink: 0;
        margin-top: 0.2rem;
      }

      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .pricing-slip {
        background-color: rgba(255, 255, 255, 0.9);
        padding: 1rem;
        margin-top: 2rem;
        border-radius: 8px;
      }

      @media (max-width: 768px) {
        .container {
          padding: 1rem;
        }

        .card {
          padding: 1.2rem;
        }

        table,
        thead,
        tbody,
        th,
        td,
        tr {
          display: block;
          width: 100%;
        }

        table tr {
          margin-bottom: 1rem;
        }

        table td::before {
          font-weight: bold;
          display: inline-block;
          width: 120px;
        }
      }

      #footerContactCTA {
        padding-top: 2rem;
        padding-bottom: 2rem;
      }

      /* Footer */
      footer {
        position: relative;
        background-image: url('https://i.imgur.com/2qneT5X.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        color: #cce8e6;
        /* soft light teal */
        text-align: left;
        padding: 0rem 4rem 4rem 0rem;
        /* top right bottom left */
        margin-top: 0;
        width: 100%;
      }

      /* Main content container inside the footer */
      .footer-container {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        /* left to right */
        justify-content: center;
        align-items: flex-start;
        /* top-align content */
        text-align: left;
        gap: 4rem;
        max-width: none;
        width: 100%;
        margin: 0;
        padding: 0;
        padding-right: 6rem;
      }

      /* Footer Branding Section (Top-Left) */
      .footer-branding {
        max-width: 250px;
        font-size: 0.65rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0;
        animation: fadeIn 2s ease forwards;
      }

      .footer-branding {
        margin-top: 0 !important;
        padding-top: 0 !important;
      }

      .footer-branding {
        max-width: 260px;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 1.25rem;
        animation: fadeIn 2s ease forwards;
      }

      .footer-logo {
        height: 45px;
        /* increased from 35px */
        max-width: 100%;
        display: block;
      }

      .footer-branding-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      .footer-company-name {
        font-weight: 700;
        font-size: 0.85rem;
        /* was 0.6rem */
        color: white;
        text-transform: uppercase;
        text-shadow: 1px 1px 3px gold;
        margin-bottom: 0.15rem;
        user-select: none;
      }

      .footer-tagline {
        font-size: 0.55rem;
        /* was 0.4rem */
        font-weight: 500;
        color: #e0f7f6;
        text-transform: uppercase;
        letter-spacing: 0.6px;
        opacity: 0;
        animation: fadeIn 2s ease forwards;
        animation-delay: 1s;
        user-select: none;
      }

      /* Responsive tweaks */
      @media (max-width: 768px) {
        .footer-branding {
          flex-direction: column;
          text-align: center;
          gap: 0.5rem;
        }
      }

      @keyframes fadeIn {
        to {
          opacity: 1;
        }
      }

      /* Each content block */
      .footer-block {
        flex: 0 1 auto;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }

      /* Headings inside blocks */
      .footer-block h3 {
        margin-top: 0;
        color: #cce8e6;
        font-size: 1.3rem;
        /* larger */
        font-weight: 600;
        letter-spacing: 0.5px;
      }

      /* Text and links */
      .footer-block a,
      .footer-block p {
        color: #cce8e6;
        text-decoration: none;
        font-size: 0.95rem;
        line-height: 2.50;
        /* ← Add this line */
      }

      .footer-block a:hover {
        text-decoration: underline;
      }

     /* GENERAL FOOTER BLOCK STYLES */ 
.footer-block {
  flex: 0 1 auto;
  max-width: 220px;
  width: 100%;
}

.footer-block a {
  white-space: nowrap;
}

.footer-block a:hover {
  text-decoration: underline;
}

/* CONTACT ITEM INLINE STYLE FIX */
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.footer-contact-item a {
  color: white;
  text-decoration: none;
}
      /* Optional: indent for dropdowns */
      .dropdown-content {
        margin-left: 1rem;
      }

      /* Responsive: stack vertically and maintain padding */
      @media (max-width: 768px) {
        .footer-container {
          flex-direction: column;
          align-items: flex-start;
          padding: 0 1rem 0 2rem;
          /* keep logo space on left */
        }
      }

      /* Responsive */
      @media (max-width: 768px) {
        .footer-container {
          flex-direction: column;
          align-items: flex-start;
        }
      }

      @media (prefers-reduced-motion: reduce) {
        * {
          animation: none !important;
          transition: none !important;
        }
      }

      /* CTA Buttons */
      .cta-btn {
        display: inline-block;
        margin: 0.5rem 0.5rem;
        background-color: #cdeeee;
        color: #07484a;
        padding: 0.75rem 1.5rem;
        border: 2px solid #f9b700;
        border-radius: 8px;
        font-weight: bold;
        text-decoration: none;
        font-size: 1.1rem;
        transition: background-color 0.3s ease;
      }

      .cta-btn i {
        margin-right: 0.5rem;
      }

      .cta-btn:hover {
        background: linear-gradient(45deg, var(--gold-color), #f2c94c);
        border-color: var(--gold-color);
        color: var(--dark-gold-text);
        animation: softShimmer 0.5s ease-in-out forwards;
        text-decoration: underline;
      }

      .cta {
        color: #004d4d;
        text-align: center;
        padding: 2rem 1rem 3rem;
        position: relative;
        overflow: hidden;
        animation: fadeInUp 1s ease-out both;
      }

      .cta::before {
        content: "";
        position: absolute;
        top: -50px;
        left: -80px;
        width: 250px;
        height: 250px;
        background: radial-gradient(circle at center, #ffd70033, transparent 70%);
        border-radius: 50%;
        z-index: 0;
        filter: blur(10px);
      }

      .cta::after {
        content: "";
        position: absolute;
        bottom: -40px;
        right: -60px;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle at center, #ffd70044, transparent 70%);
        border-radius: 50%;
        z-index: 0;
        filter: blur(8px);
      }

      .contact-badge {
        display: inline-block;
        background: #ffd700;
        /* Gold */
        color: #004d4d;
        font-weight: 700;
        padding: 0.75rem 2rem;
        border-radius: 30px;
        text-decoration: none;
        cursor: pointer;
        margin-top: 1rem;
        box-shadow: 0 4px 8px rgba(255, 215, 0, 0.4);
        transition: background 0.3s ease;
      }

      .contact-badge:focus {
        outline: 3px solid #ffd700;
        /* gold outline on focus */
        outline-offset: 2px;
      }

      .contact-badge:hover {
        background: #e6c200;
        color: #002a2a;
      }

      .cta * {
        position: relative;
        z-index: 1;
      }

      .cta h2 {
        font-size: 2rem;
        font-weight: 700;
        color: #004d4d;
        margin-bottom: 1rem;
        position: relative;
      }

      .cta p {
        font-size: 1.2rem;
        font-weight: 500;
        max-width: 700px;
        margin: 0 auto 2rem;
        line-height: 1.7;
      }

      @media (max-width: 768px) {
        .contact-badge {
          /* assuming you have a class like this */
          padding: 1rem 2rem;
          font-size: 1.1rem;
        }
      }

      @media (max-width: 600px) {
        .cta-btn {
          display: block;
          width: 80%;
          margin: 0.5rem auto;
          text-align: center;
        }
      }

      .branding {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem 2rem 1rem 2rem;
        animation: fadeIn 2s ease forwards;
      }

      /* New container for company name and tagline stacked vertically */
      .branding-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      /* Company name in caps, bold, white with shadow, size smaller than .company-name */
      .company-name-header {
        font-weight: 900;
        font-size: 1.6rem;
        color: white;
        text-transform: uppercase;
        text-shadow: 2px 2px 6px gold;
        margin-bottom: 0.3rem;
        /* spacing below company name */
        user-select: none;
      }

      footer {
        padding: 3rem 1rem;
        color: #e0f7f6;
        font-family: Arial, sans-serif;
      }

      /* Adjust tagline to move it down a bit */
      .tagline {
        font-size: 0.7rem;
        font-weight: 500;
        color: #e0f7f6;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0;
        animation: fadeIn 2s ease forwards;
        animation-delay: 1s;
        user-select: none;
      }

      .skip-link {
        position: absolute;
        left: -999px;
        top: auto;
        width: 1px;
        height: 1px;
        overflow: hidden;
        z-index: 100;
      }

      .skip-link {
        position: absolute;
        left: -999px;
        top: auto;
        width: 1px;
        height: 1px;
        overflow: hidden;
        z-index: 100;
      }

      .skip-link:focus {
        left: 1rem;
        top: 1rem;
        width: auto;
        height: auto;
        background-color: #55a4a4;
        color: white;
        padding: 0.5rem 1rem;
        text-decoration: none;
        font-weight: bold;
        border-radius: 4px;
      }

      /* Dropdown styling */
      .dropdown-content {
        display: none;
        flex-direction: column;
        padding-left: 1.2rem;
        font-size: 0.85rem;
        color: #fffdd0;
      }

      .dropdown-content p {
        margin: 0.2rem 0;
      }

      @media (min-width: 768px) {
        .dropdown:hover .dropdown-content {
          display: flex;
        }
      }

      @media (max-width: 767px) {
        .dropdown-content {
          display: none;
          flex-direction: column;
          padding: 10px;
        }

        .dropdown-content.show {
          display: flex;
        }
      }

      .footer-copy {
        text-align: center;
        font-size: 0.9rem;
        margin-top: 2rem;
        padding-bottom: 2rem;
      }

      /* Footer copyright note */
      .footer-copy {
        text-align: center;
        font-size: 0.85rem;
        margin-top: 2rem;
        color: rgba(255, 255, 255, 0.5);
        /* Very light grey / transparent */
      }

      .footer-copy {
        text-align: center;
      }

      .floating-contact-icons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 9999;
      }

      .floating-icon {
        background-color: white;
        color: #25D366;
        font-size: 28px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .floating-icon:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
      }
.floating-icon i,
i[class^="fa-"],
i[class*=" fa-"] {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

    </style>


