/* Content section styles */

.content-section {
  min-height: 400px;
  padding: 40px 0;
  color: var(--primary-color);
  line-height: 1.8;
}

.content-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 25px;
  color: var(--primary-color);
  text-shadow: var(--shadow);
  letter-spacing: 1px;
}

.content-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #1e3a8a;
}

.content-section ul,
.content-section ol {
  margin-left: 30px;
  margin-bottom: 20px;
}

.content-section li {
  margin-bottom: 10px;
  color: #1e3a8a;
}

@media screen and (max-width: 768px) {
  .content-section {
    padding: 30px 0;
  }

  .content-section h2 {
    font-size: 24px;
  }

  .content-section p {
    font-size: 14px;
  }
}

