 /* Sticky Top Bar - above the main navigation */
 .sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #6347ec;
  color: white;
  height: 3,5%; /* Fixed height */
  z-index: 1000; /* Higher than main navigation */
  display: flex;
  justify-content: center;
  align-items: center;
}

.sticky-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

/* Left section with notification icon and message */
.sticky-bar-left {
  display: flex;
  align-items: center;
}

.notification-icon {
  margin-right: 10px;
  font-size: 16px;
  color: #FFB800;
}

.sticky-bar-message {
  font-size: 14px;
}

/* Contact links */
.sticky-bar-contacts {
  display: flex;
  gap: 20px;
  align-items: center;
}

.contact-link {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #FFB800;
}

.contact-icon {
  margin-right: 6px;
}

/* Subscribe button */
.subscribe-btn {
  background-color: #FFB800;
  color: #1a1a2e;
  padding: 6px 15px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.subscribe-btn:hover {
  background-color: #ffc933;
}

/* Responsive styles */
@media (max-width: 992px) {
  .sticky-bar-message {
    font-size: 13px;
  }

  .contact-link {
    font-size: 13px;
  }
  
  .notification-icon {
    display: none; /* Hide icon on smaller screens */
  }
}

@media (max-width: 768px) {
  .sticky-bar {
    height: auto;
    padding: 8px 0;
  }
  
  .sticky-bar-content {
    flex-direction: column;
    gap: 5px;
  }
  
  .site-header {
    top: 60px; /* Adjust based on new sticky bar height */
  }
  
  .main-content {
    padding-top: 140px; /* Adjust accordingly */
  }
  
  .sticky-bar-contacts {
    gap: 10px;
  }
  
  .subscribe-btn {
    padding: 4px 10px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .sticky-bar-message {
    font-size: 12px;
  }

  .contact-link {
    font-size: 12px;
  }
  
  .contact-link span {
    display: none; /* Hide text, show only icons */
  }
  
  .contact-icon {
    margin-right: 0;
  }
}