/* Page Styles for Content Pages */

.page-container {
  max-width: 700px;
}

.content-section {
  text-align: left;
  margin-top: 30px;
}

.content-section h2 {
  color: var(--text-primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-color);
}

.content-section h3 {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
}

.content-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.content-section ul {
  color: var(--text-secondary);
  margin-left: 20px;
  margin-bottom: 15px;
}

.content-section ul li {
  line-height: 1.8;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* Service Cards */
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 25px;
  margin: 20px 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-color);
}

.service-card h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.service-card p {
  margin-bottom: 15px;
}

.service-link {
  color: #667eea;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #764ba2;
  text-decoration: underline;
}

/* Footer Links */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

/* Navigation */
.navigation-links {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

.nav-divider {
  color: var(--text-muted);
}
