/* Custom CSS for Business Education Theme */

/* Additional styling for specific elements */

.about-section, .courses-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: #f8fafc;
  border-radius: 4px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.courses-section {
  text-align: center;
}

/* Form styling */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  margin-bottom: 1rem;
}

textarea {
  min-height: 150px;
}

input[type="submit"] {
  background-color: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

input[type="submit"]:hover {
  background-color: var(--primary-dark);
}

/* Comment styling */
.comment-list {
  list-style: none;
  padding: 0;
}

.comment {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.comment:last-child {
  border-bottom: none;
}

.comment-author {
  font-weight: 600;
}

.comment-meta {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* Pagination */
.nav-links {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.page-numbers {
  padding: 0.5rem 1rem;
  background-color: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

.page-numbers:hover {
  background-color: var(--primary-dark);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-section, .courses-section {
    padding: 1.5rem;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }
}