body {
  font-family: 'Merriweather', serif;
  margin: 0;
  background: #f7f7f9;
  color: #222;
}

header {
  width: 100%;
  margin: 0;
  border-radius: 0;
  background: #2c3e50;
  border-radius: 0 0 16px 16px;
  color: #fff;
  padding: 2rem 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  text-align: center;
}

.header-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

header h1 {
  /* margin: 0 0 0.5rem 0;
  font-size: 2.5rem;
  letter-spacing: 2px;
  font-family: 'Montserrat', Arial, sans-serif; */
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 1.8rem; /* Smaller than current 2.5rem */
  font-weight: 600;
  letter-spacing: 0.5px; /* Less spacing */
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: #ffd700;
}

main {
  max-width: 900px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  margin-bottom: 100px;
}

/* Base button styles */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(90deg, #2e2f30 0%, #616367 100%);
  color: white;
}

.btn-secondary {
  background: #6c757d;
  color: white;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn-small:hover {
  background: #0056b3;
}

/* .header-content {
  display: block; 
} */

.header-left {
  text-align: center;
}

.header-left h1 {
  margin: 0 0 0.5rem 0;
  font-size: 2.5rem;
  letter-spacing: 2px;
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

.header-social {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: 8px;
}

/* Header social button styles */
.header-social .social-btn {
  min-width: auto;
  padding: 4px 6px;
  font-size: 0.8rem;
  border-radius: 16px;
}

.header-social .social-btn svg {
  width: 16px;
  height: 16px;
}
