/* ========================================
   SIMPLE-PAGE - IMPRESSUM, DATENSCHUTZ, ÃœBER MICH (FIXED)
   ======================================== */

/* MAIN CONTENT WRAPPER */
.simple-page {
  background: white;
  padding: 3rem 0;
}

.simple-page .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* PAGE HEADER */
.simple-page h1 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--primary-color);
}

/* INTRO TEXT */
.simple-page .intro {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  background: var(--secondary-color);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

/* CONTENT SECTIONS */
.simple-page .content {
  line-height: 1.8;
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* HEADINGS */
.simple-page h2 {
  font-size: 1.8rem;
  color: var(--dark-color);
  margin: 2.5rem 0 1rem 0;
  line-height: 1.2;
  font-weight: 700;
}

.simple-page h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin: 2rem 0 0.75rem 0;
  font-weight: 600;
  line-height: 1.3;
}

.simple-page h4 {
  font-size: 1.15rem;
  color: var(--dark-color);
  margin: 1.5rem 0 0.5rem 0;
  font-weight: 600;
}

/* PARAGRAPHS */
.simple-page p {
  margin-bottom: 1.5rem;
  color: #555;
  line-height: 1.8;
}

/* LISTS */
.simple-page ul,
.simple-page ol {
  margin: 1.5rem 0;
  margin-left: 2.5rem;
  line-height: 1.9;
}

.simple-page ul li,
.simple-page ol li {
  margin-bottom: 0.8rem;
  color: #555;
}

/* STRONG TEXT */
.simple-page strong {
  color: var(--dark-color);
  font-weight: 600;
}

/* EMPHASIS */
.simple-page em {
  font-style: italic;
  color: #666;
}

/* LINKS */
.simple-page a {
  color: var(--primary-color);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  font-weight: 500;
}

.simple-page a:hover {
  border-bottom-color: var(--primary-color);
}

/* CONTACT INFO BOX */
.contact-info {
  background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(245,247,250,0.5) 100%);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  border: 1px solid #e0e0e0;
}

.contact-info h3 {
  color: var(--primary-color);
  margin-top: 0;
}

.contact-info p {
  margin: 0.5rem 0;
}

/* HIGHLIGHTS / INFO BOXES */
.highlight-box {
  background: linear-gradient(135deg, rgba(45,143,163,0.05) 0%, rgba(45,143,163,0.02) 100%);
  border-left: 5px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
}

.highlight-box h4 {
  margin-top: 0;
  color: var(--primary-color);
}

/* FEATURE HIGHLIGHTS (fÃ¼r Ãœber Mich Seite) */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.feature-item {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.feature-item:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.feature-item h4 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.feature-item p {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
}

/* CTA SECTION - SOLLTE ÃœBERALL SICHTBAR SEIN */
.simple-page .cta-section {
  display: block !important;
  visibility: visible !important;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1f6f7f 100%);
  color: white;
  padding: 2.5rem;
  text-align: center;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(45,143,163,0.2);
  width: 100%;
  clear: both;
}

.simple-page .cta-section h3 {
  color: white !important;
  margin-top: 0 !important;
  margin-bottom: 1rem !important;
  border: none !important;
  padding: 0 !important;
  font-size: 1.4rem !important;
}

.simple-page .cta-section p {
  color: rgba(255,255,255,0.95) !important;
  margin-bottom: 1.5rem !important;
}

.simple-page .cta-section .btn {
  display: inline-block;
  background: white;
  color: var(--primary-color);
  padding: 0.875rem 1.75rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.simple-page .cta-section .btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* TABLE OF CONTENTS */
.toc {
  background: var(--secondary-color);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  border-left: 4px solid var(--primary-color);
}

.toc h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: var(--dark-color);
}

.toc ul {
  margin-left: 1.5rem;
  margin-bottom: 0;
}

.toc li {
  margin-bottom: 0.5rem;
}

.toc a {
  color: var(--primary-color);
  font-weight: 500;
}

/* BLOCKQUOTE */
.simple-page blockquote {
  border-left: 5px solid var(--primary-color);
  background: linear-gradient(90deg, rgba(45,143,163,0.05) 0%, transparent 100%);
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #666;
  font-size: 1.05rem;
}

.simple-page blockquote p {
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .simple-page h1 {
    font-size: 2rem;
  }

  .simple-page h2 {
    font-size: 1.5rem;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .simple-page {
    padding: 1.5rem 0;
  }

  .simple-page .container {
    padding: 0 15px;
  }

  .simple-page h1 {
    font-size: 1.6rem;
  }

  .simple-page h2 {
    font-size: 1.3rem;
  }

  .simple-page h3 {
    font-size: 1.1rem;
  }

  .simple-page .content {
    font-size: 1rem;
  }

  .simple-page .intro {
    padding: 1rem;
    font-size: 1rem;
  }

  .feature-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .simple-page .cta-section {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }
}

/* SPECIFIC FOR IMPRESSUM & DATENSCHUTZ */
.legal-page h2:first-of-type {
  margin-top: 0;
}

.legal-page h3 {
  margin-top: 1.5rem;
}

.legal-page h4 {
  margin-top: 1rem;
}

/* SPECIFIC FOR ÃœBER MICH */
.about-page .intro {
  font-size: 1.15rem;
}

.about-page .feature-list {
  margin-top: 2.5rem;
}

/* CTA-SECTION OVERRIDE - FORCE DISPLAY */

.cta-section {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;

  background: linear-gradient(135deg, #2d8fa3 0%, #1f6f7f 100%) !important;
  color: white !important;
  padding: 2.5rem !important;
  text-align: center !important;
  border-radius: 12px !important;
  margin: 2rem auto !important;
  box-shadow: 0 4px 12px rgba(45,143,163,0.2) !important;

  width: auto !important;
  max-width: 100% !important;
  clear: both !important;
  float: none !important;
  position: static !important;
}

.cta-section h3 {
  color: white !important;
  font-size: 1.4rem !important;
  margin: 0 0 1rem 0 !important;
  padding: 0 !important;
  border: none !important;
  line-height: 1.2 !important;
}

.cta-section p {
  color: rgba(255,255,255,0.95) !important;
  font-size: 1rem !important;
  margin: 0 0 1.5rem 0 !important;
  padding: 0 !important;
}

.cta-section .btn {
  display: inline-block !important;
  background: white !important;
  color: #2d8fa3 !important;
  padding: 0.875rem 1.75rem !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  border: none !important;
  cursor: pointer !important;
  font-size: 1rem !important;
  transition: all 0.3s ease !important;
}

.cta-section .btn:hover {
  background: #f0f0f0 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
}