.full-section {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
}

.section-content {
  position: relative;
  color: var(--color-white);
  text-align: center;
  max-width: 700px;
  padding: 20px;
  z-index: 1;
}

.section-content h1,
.section-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-content p {
  font-size: 1.1rem;
  line-height: 1.6;
}
