.cms-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  margin-bottom: 40rem;
}

.cms-section {
  background: white;
  border-radius: 0.5rem;
  padding: 2rem;
}

.cms-h1 {
  font-size: 2.7rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 2rem;
  text-align: center;
}

.cms-h2 {
  font-size: 2.0rem;
  font-weight: bold;
  color: #2d3748;
  margin-bottom: 1rem;
}

.cms-content-block {
  margin-bottom: 2rem;
  text-align: justify !important;
}

.cms-p {
  line-height: 1.6;
  color: #4a5568;
  font-size: 1.5rem;
  margin: 0;
}

.cms-strong {
  color: #2d3748;
  font-weight: 600;
}

.cms-cta-block {
  margin-top: 3rem;
  text-align: center;
  padding: 2rem;
  background-color: #f8fafc;
  border-radius: 0.5rem;
}

.cms-cta-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1.5rem;
}

.cms-cta-button {
  background-color: #4299e1;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.cms-cta-button:hover {
  background-color: #3182ce;
}

.cms-cta-button:focus {
  outline: 2px solid #4299e1;
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .cms-container {
    padding: 1rem;
  }

  .cms-section {
    padding: 1.5rem;
  }

  .cms-h1 {
    font-size: 2.2rem;
  }

  .cms-h2 {
    font-size: 1.7rem;
  }

  .cms-p {
    font-size: 1.5rem;
  }

  .cms-cta-text {
    font-size: 1.5rem;
  }
}