:root{--page-title-display:none;}/* Start custom CSS *//* SCHUTZKONZEPT SEITE TC SCHALLSTADT */

/* Grundlayout */
.schutzkonzept-section {
  padding: 80px 20px;
}

.schutzkonzept-container {
  max-width: 1140px;
  margin: 0 auto;
}

/* Hero Bereich */
.schutz-hero {
  background: linear-gradient(135deg, #0f3d2e 0%, #1f6b4a 100%);
  color: #ffffff;
  border-radius: 28px;
  padding: 90px 50px;
  text-align: center;
  overflow: hidden;
}

.schutz-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
}

.schutz-hero p {
  font-size: 20px;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Intro Text */
.schutz-intro {
  max-width: 850px;
  margin: 60px auto;
  text-align: center;
}

.schutz-intro h2 {
  font-size: 34px;
  color: #0f3d2e;
  margin-bottom: 20px;
}

.schutz-intro p {
  font-size: 18px;
  line-height: 1.75;
  color: #333333;
}

/* Kacheln */
.schutz-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 50px 0;
}

.schutz-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 32px 24px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(15, 61, 46, 0.08);
  transition: all 0.25s ease;
}

.schutz-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.schutz-card h3 {
  font-size: 22px;
  color: #0f3d2e;
  margin-bottom: 12px;
}

.schutz-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
}

/* Timeline */
.schutz-timeline {
  margin: 70px 0;
  background: #f4f8f6;
  border-radius: 28px;
  padding: 50px;
}

.schutz-timeline h2 {
  text-align: center;
  color: #0f3d2e;
  font-size: 34px;
  margin-bottom: 40px;
}

.schutz-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.schutz-step:last-child {
  margin-bottom: 0;
}

.schutz-number {
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0f3d2e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.schutz-step-content h3 {
  margin: 0 0 8px;
  color: #0f3d2e;
  font-size: 21px;
}

.schutz-step-content p {
  margin: 0;
  color: #555555;
  line-height: 1.6;
}

/* Grundsätze */
.schutz-principles {
  background: #ffffff;
  border-radius: 28px;
  padding: 50px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
}

.schutz-principles h2 {
  color: #0f3d2e;
  font-size: 34px;
  margin-bottom: 28px;
  text-align: center;
}

.schutz-principles ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.schutz-principles li {
  font-size: 18px;
  padding: 14px 0 14px 36px;
  position: relative;
  border-bottom: 1px solid #eeeeee;
}

.schutz-principles li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1f6b4a;
  font-weight: 800;
}

.schutz-principles li:last-child {
  border-bottom: none;
}

/* Kontaktbox */
.schutz-contact {
  margin-top: 70px;
  background: #0f3d2e;
  color: #ffffff;
  border-radius: 28px;
  padding: 50px;
  text-align: center;
}

.schutz-contact h2 {
  color: #ffffff;
  font-size: 34px;
  margin-bottom: 16px;
}

.schutz-contact p {
  font-size: 18px;
  line-height: 1.6;
}

.schutz-contact a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
}

/* Downloadbereich */
.schutz-downloads {
  margin-top: 70px;
}

.schutz-downloads h2 {
  color: #0f3d2e;
  font-size: 34px;
  margin-bottom: 24px;
  text-align: center;
}

.schutz-download-link {
  display: block;
  background: #f4f8f6;
  border-radius: 16px;
  padding: 18px 24px;
  margin-bottom: 14px;
  color: #0f3d2e;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.schutz-download-link:hover {
  background: #0f3d2e;
  color: #ffffff;
}

/* Mobile */
@media (max-width: 1024px) {
  .schutz-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .schutz-hero {
    padding: 70px 35px;
  }
}

@media (max-width: 767px) {
  .schutzkonzept-section {
    padding: 50px 16px;
  }

  .schutz-hero {
    padding: 60px 24px;
    border-radius: 22px;
  }

  .schutz-grid {
    grid-template-columns: 1fr;
  }

  .schutz-timeline,
  .schutz-principles,
  .schutz-contact {
    padding: 32px 24px;
    border-radius: 22px;
  }

  .schutz-step {
    gap: 16px;
  }

  .schutz-number {
    min-width: 40px;
    height: 40px;
  }
}/* End custom CSS */