/* Header Main Styles */
.site-header {
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.site-logo-icon {
  width: 32px;
  height: 32px;
  color: #4f46e5;
}

.site-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
}

.buy-package-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #4f46e5;
  color: #ffffff;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: background-color 0.2s;
}

.buy-package-btn:hover {
  background-color: #4338ca;
  color: #ffffff;
}

.buy-package-icon {
  width: 20px;
  height: 20px;
}

/* Mobile styles */
@media (max-width: 767px) {
  .buy-package-btn {
    display: none;
  }
}
