/* Fusion Landing Page Styles */
.fusion-landing {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: 0;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

h2 {
    text-align: center;
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.mb4 {
    margin-bottom: 4rem;
}
/* Sticky Navigation */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 250px;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    z-index: 1000;
    border-bottom: 1px solid #f3f4f6;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.sticky-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.sticky-nav-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sticky-nav-item {
    position: relative;
}

/* Make these selectors more specific to override conflicting styles */
.sticky-nav .sticky-nav-list .sticky-nav-item .sticky-nav-link {
    display: inline-block;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: none;
    color: #333;
    font-size: .9rem !important;
    font-weight: 500 !important;
    letter-spacing: 0;
    transition: color 0.2s ease;
}

@media (max-width: 1170px) {
    .sticky-nav .sticky-nav-list .sticky-nav-item .sticky-nav-link {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero-buttons {
        flex-direction: column;
    }
}

.sticky-nav .sticky-nav-list .sticky-nav-item .sticky-nav-link:hover {
    color: #758C7E;
}

.sticky-nav .sticky-nav-list .sticky-nav-item .sticky-nav-link.active {
    color: #758C7E;
}

.sticky-nav .sticky-nav-list .sticky-nav-item .sticky-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #758C7E;
    border-radius: 2px;
}

/* Add padding to body to account for fixed nav */
body {
    padding-top: 4rem;
}

@media (max-width: 768px) {
    .sticky-nav-list {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .sticky-nav .sticky-nav-list .sticky-nav-item .sticky-nav-link {
        font-size: 0.9rem;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: #fff;
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #333;
    position: relative;
    padding: 80px 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    padding-bottom: 60px; /* Space for the arrow */
}

.gradient-text {
    --tw-gradient-from: #0F4C81;
    --tw-gradient-via: #1C6BA0;
    --tw-gradient-to: #2A9D8F;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to);
  
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-bg {
    --tw-gradient-from: #0F4C81;
    --tw-gradient-via: #1C6BA0;
    --tw-gradient-to: #2A9D8F;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to);
  
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
    color: transparent;
}

.hero .subtitle {
    font-size: 1.25rem;
    line-height: 1.75rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #4A5568;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero .button {
    padding: 15px 30px !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.hero .btn--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    background-color: #758C7E;
    color: white;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    text-decoration: none;
}

.hero .btn--primary:hover {
    background-color: rgba(117, 140, 126, 0.9);
}

.hero .btn--secondary {
    background: transparent;
    color: #333;
    border: 2px solid #333;
}

.hero .btn--secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

/* Scroll Arrow */
.scroll-arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #0F4C81;
    text-decoration: none;
    animation: bounce 1s infinite;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    transform: translateX(-50%) translateY(5px);
}

.scroll-arrow svg {
    width: 36px;
    height: 36px;
    stroke-width: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Features Section */
.features,
.technology,
.methodology {
    padding: 80px 0;
    background: #f8f9fa;
}

.approach {
    padding: 80px 0 60px 0;
    background: #fff;
}

.features-grid,
.technology-grid,
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.approach-focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
}

.approach .feature-card{
    background: #f8f9fa;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: left;
    align-items: center;
}

.feature-icon svg {
    width: 36px;
    height: 36px;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: .75rem;
}

/* Intro Section */
.intro {
    padding-top: 5rem;
    background: #fff;
}

.subtitle,
.outro-quote p {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #4A5568;
    max-width: 56rem;
    margin: 0 auto 4rem;
}

/* Intro Grid - Mobile First Approach */
.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
    grid-auto-rows: 1fr; /* This is key - makes all rows equal height */
}

/* Desktop Layout */
@media (min-width: 1250px) {
    .intro-grid {
        display: grid; /* Keep grid instead of flex for better equal height */
        grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
        gap: 30px;
        grid-auto-rows: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .features-grid,
    .methodology-grid,
    .approach-focus-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .intro-subtitle {
        font-size: 1.1rem;
    }

    .outro-quote p {
        font-size: 1.2rem;
        padding: 0 20px;
    }

    .cta {
        padding: 40px 20px;
    }

    .cta-subtitle {
        font-size: 0.875rem;
    }

    .cta-button {
        width: 100%;
        padding: 0.875rem 1.25rem;
    }

    .solutions-section .solution-cta {
        padding: 1.5rem;
    }
}

.card-gradient {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
    --tw-gradient-from: #fff var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: #F6F9FC var(--tw-gradient-to-position);
}

.intro-card {
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.intro-icon-wrapper {
    margin-bottom: 20px;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.intro-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-icon svg {
    width: 32px;
    height: 32px;
}

.intro-card h3 {
    flex-shrink: 0; /* Prevent title from shrinking */
    margin-bottom: 1rem; /* Add consistent spacing */
    font-size: 1.25rem;
    font-weight: 600;
}

.intro-card p {
    color: #666;
    flex-grow: 1; /* This makes the paragraph fill available space */
    margin: 0;
    line-height: 1.6;
}

/* Color classes for icons */
.text-saas-blue {
    color: rgb(15 76 129);
}

.text-saas-teal {
    color: rgb(42 157 143);
}

.text-saas-orange {
    color: rgb(255 140 66);
}

.bg-saas-blue,
.bg-blue {
    background-color: #0f4c811a;
}

.bg-saas-teal,
.bg-teal {
    background-color: #2a9d8f1a;
}

.bg-saas-orange,
.bg-orange {
    background-color: #ff8c421a;
}

/* CTA Section */
.cta {
    padding: 48px 0;
    background-color: #0f4c811a;
    text-align: center;
}

.last-cta {
    padding: 48px 0;
    text-align: center;
}

.last-cta h2 {
    color: #fff;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.last-cta p {
    max-width: 48rem;
    color: #fff;
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin: 0 auto 2rem;
}

.last-cta .cta-button {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.cta h2,
.solution-cta h2 {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: .75rem;
}

.cta .container {
    max-width: 768px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    background-color: #758C7E;
    color: white;
    padding: .5rem 1.5rem;
    font-size: 1rem;
    text-decoration: none;
}

.cta-button:hover,
.last-cta .cta-button:hover {
    background-color: #5e7262 !important;
}

/* Solutions Section (Our Solutions) */
.solutions-section {
    background: #fff;
    padding-top: 4rem;
}

.solutions-section p {
    color: #666;
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.solution-card {
    border-radius: 16px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
    border: 1px solid #ececec;
    margin-bottom: 3rem;
    background: #fff;
    overflow: hidden;
}

.solution-card-row {
    display: flex;
    flex-direction: row;
    width: 100%;
}

@media (max-width: 1170px) {
    .solution-card-row {
        flex-direction: column;
    }

    .fusion-notification {
        top: 33px !important;
    }
}

@media (max-width: 800px) {
    .fusion-notification {
        top: 61px !important;
    }
}

.solution-card-col-left {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 33.3333%;
    background: rgba(var(--icon-color-rgb), 0.06);
}

.solution-card-col-right {
    background: #fff;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 66.6667%;
}

@media (max-width: 1170px) {
    .solution-card-col-left,
    .solution-card-col-right {
        width: 100%;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 1250px) {
    .intro-grid {
        grid-template-columns: 1fr;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

.solution-card-icon {
    border-radius: 9999px;
    background: #fff;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 2px 8px 0 rgba(42,157,143,0.08);
}

.solution-card-icon svg {
    width: 32px;
    height: 32px;
}

.solution-card-col-left h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem 0;
}

.solution-card-col-left ul {
    margin-bottom: 0;
    padding-left: 1.25rem;
}

.solution-card-col-left ul li {
    color: #444;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.solution-card-col-right h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem 0;
}

.solution-card-col-right ul {
    margin-bottom: 1.5rem;
    padding-left: 1.25rem;
}

.solution-card-col-right ul li {
    color: #444;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.solution-card-col-right p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
}

.solution-cta {
    background: #f3f7fa;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    max-width: 1200px;
    margin: 2.5rem auto 0 auto;
}

.solution-cta:last-child {
    margin-bottom: 4rem;
}

.solution-cta a:hover {
    background: #6aa05e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px 0 rgba(123,184,111,0.15);
}

@media (max-width: 600px) {
    .solutions-section {
        padding: 32px 0;
    }

    .solution-cta {
        padding: 1rem 0.5rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .features-grid,
    .methodology-grid,
    .approach-focus-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-subtitle {
        font-size: 1.1rem;
    }

    .outro-quote p {
        font-size: 1.2rem;
        padding: 0 20px;
    }

    .cta {
        padding: 40px 20px;
    }

    .cta-subtitle {
        font-size: 0.875rem;
    }

    .cta-button {
        width: 100%;
        padding: 0.875rem 1.25rem;
    }

    .solutions-section .solution-cta {
        padding: 1.5rem;
    }
}
.fusion-methodology {
    background: #fff;
}
.fusion-methodology-card {
    background: #f8f9fa;;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.1);
    margin-bottom: 4rem;
  }
  
  .fusion-methodology-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .fusion-methodology-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  @media (max-width: 900px) {
    .fusion-methodology-grid {
      grid-template-columns: 1fr;
    }
  }
  
  .fusion-methodology-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
  }
  
  .fusion-methodology-number {
    border-radius: 50%;
    background: rgba(42, 157, 143, 0.08);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: #2A9D8F;
    margin-top: 0.25rem;
    flex-shrink: 0;
  }
  
  .fusion-methodology-item-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 .25rem 0;
  }
  
  .fusion-methodology-item-desc {
    color: #666;
    font-size: 1rem;
    margin: 0;
  }
  
  .fusion-methodology-flywheel-wrap {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
  }
  
  .fusion-methodology-flywheel {
    max-width: 400px;
    width: 100%;
  }
  
  .fusion-methodology-flywheel-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .fusion-methodology-flywheel-graphic {
    position: relative;
    width: 256px;
    height: 256px;
    margin: 0 auto;
  }
  
  .flywheel-outer {
    width: 256px;
    height: 256px;
    border-radius: 50%;
    border: 4px dashed rgba(42, 157, 143, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .flywheel-middle {
    width: 192px;
    height: 192px;
    border-radius: 50%;
    border: 4px solid rgba(15, 76, 129, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .flywheel-inner {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: rgba(255, 140, 66, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .flywheel-label {
    font-weight: 700;
    text-align: center;
    color: #222;
  }
  
  .flywheel-arrow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  .flywheel-spin {
    width: 100%;
    height: 100%;
    animation: flywheel-spin 20s linear infinite;
  }
  
  @keyframes flywheel-spin {
    100% {
      transform: rotate(360deg);
    }
  }

  .case-study-section {
    background: #f8fafc;
    border-top: 1px solid #f3f4f6;
    min-height: 50vh;
    padding: 0;
  }
  
  .case-study-inner {
    padding: 5rem 1.5rem;
    background: #f8fafc;
  }
  
  .case-study-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .case-study-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .case-study-subtitle {
    font-size: 1.15rem;
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
  }
  
  .case-study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    justify-content: center;
    align-items: stretch; /* Ensure all grid items stretch to same height */
  }
  
  .case-study-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%; /* Ensure minimum height fills grid item */
  }
  
  .card-gradient {
    background: linear-gradient(135deg, #f8fafc 60%, #f3f7fa 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    flex: 1; /* Allow gradient container to grow */
    border-radius: 16px; /* Match parent border radius */
  }
  
  .case-study-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%; /* Ensure content fills available space */
  }
  
  .case-study-card-icon {
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0; /* Prevent icon from shrinking */
  }
  
  .case-study-card-icon-blue {
    background: rgba(15, 76, 129, 0.08);
  }
  .case-study-card-icon-teal {
    background: rgba(42, 157, 143, 0.08);
  }
  .case-study-card-icon-orange {
    background: rgba(255, 140, 66, 0.08);
  }
  
  .case-study-card-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .case-study-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  
  .case-study-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .case-study-card-desc {
    color: #666;
    font-size: 1rem;
    flex: 1;
  }
  
  .case-study-card-desc .bold {
    font-weight: 700;
  }
  
  .case-study-card-action {
    margin-top: auto;
    padding-top: 1.5rem;
  }
  
  .case-study-card-btn {
    display: block;
    width: 100%;
    background: #758C7E;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s;
  }
  
  .case-study-card-btn:hover {
    background: #5e7262;
  }
  
  @media (max-width: 900px) {
    .case-study-grid {
      flex-direction: column;
      gap: 2rem;
    }
    .case-study-card {
      max-width: 100%;
    }
  }

/* Footer Styles */
.fusion-footer {
    margin-top: 250px;
    background: #111827;
    color: white;
    padding: 3rem 1.5rem;
}

.fusion-footer-container {
    max-width: 72rem;
    margin: 0 auto;
}

.fusion-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .fusion-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.fusion-footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.fusion-footer-desc {
    color: #d1d5db;
    max-width: 28rem;
    margin-bottom: 1.5rem;
}

.fusion-footer-social {
    display: flex;
    gap: 1rem;
}

.fusion-footer-social a {
    color: #9ca3af;
    transition: color 0.2s ease;
}

.fusion-footer-social a:hover {
    color: white;
}

.fusion-footer-social svg {
    width: 20px;
    height: 20px;
}

.fusion-footer-right {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .fusion-footer-right {
        align-items: flex-end;
    }
}

.fusion-footer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    height: 2.5rem;
    padding: 0 1rem;
    background: #2A9D8F;
    color: white;
    margin-bottom: 1rem;
    align-self: flex-start;
    transition: background-color 0.2s ease;
}

.fusion-footer-button:hover {
    background: rgba(42, 157, 143, 0.9);
}

@media (min-width: 768px) {
    .fusion-footer-button {
        align-self: flex-end;
    }
}

.fusion-footer-copyright {
    font-size: 0.875rem;
    color: #9ca3af;
}

.fusion-footer-copyright a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.fusion-footer-copyright a:hover {
    color: white;
}

/* Notification Bar */
.fusion-notification {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 30;
    background: #447a7c;
    display: none; /* Hidden by default */
}

.fusion-notification.show {
    display: block;
}

.fusion-notification-container {
    margin-left: 250px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 48px;
    padding: 0 1rem;
}

@media (max-width: 800px) {
    .fusion-notification-container {
        margin-left: 0;
    }
}

@media (max-width: 600px) {
    .fusion-notification-logo {
        display: none;
    }

    .fusion-notification-container {
        flex-direction: column;
        height: auto;
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }

    .fusion-notification-content {
        width: 100%;
        flex-direction: column;
        text-align: center;
    }

    .fusion-notification-text {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .fusion-notification-close {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
    }
}

.fusion-notification-logo img {
    height: 24px;
}

.fusion-notification-content {
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    gap: 0.75rem;
}

.fusion-notification-text {
    margin-right: 0.75rem;
    font-weight: 500;
    color: white;
}

.fusion-notification-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    height: 36px;
    padding: 0 0.75rem;
    border-radius: 0.375rem;
    background: #758C7E;
    color: white;
    transition: background-color 0.2s ease;
}

.fusion-notification-button:hover {
    background: rgba(117, 140, 126, 0.9);
}

.fusion-notification-close {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.fusion-notification-close button {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.fusion-notification-close button:hover {
    color: white;
}

.fusion-notification-close svg {
    width: 18px;
    height: 18px;
}