/* New Navigation Header Styles */
.sg-nav-header {
  background: #fff;
  border-bottom: 1px solid #e8f5ea;
  padding: 12px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.sg-nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sg-nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sg-nav-logo {
  width: 45px;
  height: 45px;
}

.sg-nav-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #22a026;
  margin: 0;
}

.sg-nav-right {
  display: flex;
  gap: 12px;
}

/* Content Section Styles */
.sg-content-section {
  text-align: center;
  padding: 40px 20px 20px 20px;
  background: #f8fcfa;
}

.sg-page-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #131313;
  margin: 0 0 12px 0;
}

.sg-page-desc {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sg-nav-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .sg-nav-title {
    font-size: 1.2rem;
  }
  
  .sg-page-title {
    font-size: 1.8rem;
  }
}
