:root {
  --brand-primary: #0d6efd;
  --hero-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-link.active {
  font-weight: 600;
}

.hero-section {
  background: var(--hero-gradient);
  color: #fff;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 5rem 0;
  }
}

.hero-section .lead {
  opacity: 0.92;
}

.page-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  padding: 2.5rem 0;
}

.page-header h1 {
  margin-bottom: 0.5rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background-color: rgba(13, 110, 253, 0.1);
  color: var(--brand-primary);
}

.sidebar {
  background-color: #f8f9fa;
  border-radius: 0.5rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.sidebar h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--brand-primary);
}

.sidebar .list-group-item {
  border: none;
  background: transparent;
  padding: 0.4rem 0;
  font-size: 0.95rem;
}

.sidebar .list-group-item:hover {
  color: var(--brand-primary);
}

.sidebar .badge {
  font-weight: 500;
}

.blog-post {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #dee2e6;
}

.blog-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.blog-post img {
  border-radius: 0.5rem;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-meta {
  font-size: 0.875rem;
  color: #6c757d;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item .icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(13, 110, 253, 0.1);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

footer {
  margin-top: auto;
}

@media (max-width: 991.98px) {
  .sidebar {
    margin-bottom: 1rem;
  }
}
