.site-notification {
    background-color: rgba(8, 133, 67, 0.1);
    border-left: 4px solid var(--primary);
    padding: 12px 20px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: fadeIn 0.5s ease-in-out;
    position: fixed;
    top: 80px; /* Position it just below the header (adjust if header height changes) */
    left: 0;
    z-index: 999;
    font-family: "Montserrat", sans-serif;
    margin: 0;
  }
  
  .notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }
  
  .notification-icon {
    font-size: 24px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .notification-text {
    font-family: "Montserrat", sans-serif;
    color: var(--dark);
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
  }
  
  .notification-text strong {
    color: var(--primary);
    font-weight: 600;
  }
  
  .notification-close {
    background: none;
    border: none;
    color: var(--dark-light);
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
    transition: color 0.2s ease;
    flex-shrink: 0;
  }
  
  .notification-close:hover {
    color: var(--dark);
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Add padding to the body when notification is visible to prevent content from being hidden */
  body.has-notification {
    padding-top: 50px; /* Adjust based on notification height */
  }
  
  @media (max-width: 768px) {
    .site-notification {
      padding: 10px 15px;
      top: 70px; /* Adjust for smaller header on mobile */
    }
  
    .notification-text {
      font-size: 14px;
    }
  
    .notification-icon {
      font-size: 20px;
    }
  
    body.has-notification {
      padding-top: 45px; /* Adjust for smaller notification on mobile */
    }
  }
  
  @media (max-width: 428px) {
    .site-notification {
      padding: 10px 15px;
      top: 70px; /* Adjust for smaller header on mobile */
    }
  
    .notification-text {
      font-size: 8px;
    }
  
    .notification-icon {
      font-size: 12px;
    }
  
    body.has-notification {
      padding-top: 45px; /* Adjust for smaller notification on mobile */
    }
  }
  