/* ==========================================================================
   Flowww.org Styles
   ========================================================================== */

/* CSS Variables */
:root {
  --primary-color: #1a1a1a;
  --secondary-color: #4a4a4a;
  --accent-color: #0066cc;
  --background-color: #ffffff;
  --text-color: #333333;
  --light-gray: #f5f5f5;
  --border-color: #e0e0e0;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-color);
  line-height: 1.6;
  scroll-behavior: smooth;
}

.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: all 0.3s ease;
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  background: var(--background-color);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo-image {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav button {
  font-size: 16px;
  color: var(--text-color);
  padding: 8px 16px;
  border-radius: 6px;
}

.nav button:hover {
  color: var(--accent-color);
}

.cta-button {
  background: var(--accent-color);
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 500;
}

.cta-button:hover {
  background: #0052a3;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

@media (max-width: 768px) {
  .nav {
    gap: 16px;
  }

  .nav button {
    font-size: 14px;
    padding: 6px 12px;
  }

  .cta-button {
    padding: 8px 16px;
  }

  .logo-image {
    height: 32px;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  position: relative;
  padding: 150px 0 200px;
  text-align: center;
  min-height: 700px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: var(--light-gray);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 80px;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.15);
  padding: 20px 32px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.hero-questions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 120px;
}

.hero-questions .question {
  position: absolute;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.5;
  text-align: center;
  background: rgba(0, 0, 0, 0.15);
  padding: 12px 24px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
}

.hero-questions .question.active {
  opacity: 1;
}

.hero-cta {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  padding: 16px 48px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
}

.hero-cta:hover {
  background: #0052a3;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0 120px;
    align-items: flex-start;
  }

  .hero-content {
    padding-top: 40px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-questions {
    margin-bottom: 80px;
    margin-top: 32px;
    min-height: 100px;
  }

  .hero-questions .question {
    font-size: 18px;
    padding: 10px 20px;
    white-space: normal;
    max-width: 90%;
  }

  .hero-cta {
    padding: 14px 36px;
    font-size: 16px;
  }
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services {
  padding: 120px 0;
  background: var(--background-color);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.services-header p {
  font-size: 18px;
  color: var(--secondary-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.service-card {
  background: var(--light-gray);
  padding: 48px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
}

.service-icon img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.service-card h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.service-description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-description p {
  font-size: 16px;
  color: var(--secondary-color);
  line-height: 1.6;
  margin: 0;
}

.service-description p strong {
  color: var(--primary-color);
  font-weight: 600;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
}

.service-list li {
  font-size: 16px;
  color: var(--secondary-color);
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.service-list li:last-child {
  margin-bottom: 0;
}

.service-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 600;
}

.service-cta {
  margin-top: 24px;
  font-size: 16px;
  text-align: center;
}

.service-cta a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-cta a:hover {
  color: var(--accent-color);
}

.credentials {
  text-align: center;
  padding: 32px;
  background: var(--light-gray);
  border-radius: 8px;
}

.credentials-text {
  font-size: 18px;
  color: var(--secondary-color);
}

.credentials-text strong {
  color: var(--primary-color);
  font-weight: 600;
}

@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }

  .services-header h2 {
    font-size: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card {
    padding: 32px;
  }

  .service-card h3 {
    font-size: 24px;
  }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials-section {
  padding: 100px 0;
  background: var(--light-gray);
  position: relative;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 20px;
  background: rgba(0, 0, 0, 0.1);
  color: var(--secondary-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  opacity: 0.3;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.testimonial-nav:hover {
  opacity: 0.8;
  background: rgba(0, 0, 0, 0.15);
}

.testimonial-prev {
  left: 0;
}

.testimonial-next {
  right: 0;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonial-dot:hover {
  background: rgba(0, 0, 0, 0.4);
}

.testimonial-dot.active {
  background: var(--accent-color);
  width: 12px;
  height: 12px;
}

.testimonials-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20px;
  transition: height 0.3s ease;
}

.testimonial {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  text-align: center;
  padding: 0 40px;
  top: 20px;
}

.testimonial.active {
  opacity: 1;
}

.testimonial-text {
  font-size: 20px;
  line-height: 1.7;
  color: var(--secondary-color);
  font-style: italic;
  margin: 0 0 32px 0;
  quotes: """ """ "'" "'";
}

.testimonial-text::before {
  content: open-quote;
}

.testimonial-text::after {
  content: close-quote;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-color);
  flex-shrink: 0;
}

.testimonial-info {
  text-align: left;
}

.testimonial-info a {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

.testimonial-info a:hover {
  color: var(--accent-color);
}

.testimonial-title {
  font-size: 14px;
  font-weight: 400;
  color: var(--secondary-color);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-header h2 {
    font-size: 32px;
  }

  .testimonials-container {
    padding-top: 20px;
  }

  .testimonial {
    padding: 0 20px;
    top: 20px;
  }

  .testimonial-text {
    font-size: 18px;
  }

  .testimonial-image {
    width: 50px;
    height: 50px;
  }

  .testimonial-info a {
    font-size: 15px;
  }

  .testimonial-title {
    font-size: 13px;
  }

  .testimonial-nav {
    width: 36px;
    height: 36px;
    font-size: 24px;
    margin-top: 10px;
  }

  .testimonial-prev {
    left: -10px;
  }

  .testimonial-next {
    right: -10px;
  }
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-us {
  padding: 100px 0;
  background: #fff;
}

.about-header {
  text-align: center;
  margin-bottom: 64px;
}

.about-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.about-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.about-content p {
  font-size: 16px;
  color: var(--secondary-color);
  margin-bottom: 24px;
  text-align: justify;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-founder {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.founder-image {
  width: 280px;
  height: 280px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.about-founder > div {
  flex: 1;
}

.about-team-member {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 48px;
}

.team-member-image {
  width: 280px;
  height: 280px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.about-team-member > div {
  flex: 1;
}

@media (max-width: 768px) {
  .about-us {
    padding: 60px 0;
  }

  .about-header h2 {
    font-size: 32px;
  }

  .about-content p {
    font-size: 15px;
    text-align: left;
  }

  .about-founder {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .founder-image {
    width: 240px;
    height: 240px;
  }

  .about-founder > div {
    text-align: left;
  }

  .about-team-member {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .team-member-image {
    width: 240px;
    height: 240px;
  }

  .about-team-member > div {
    text-align: left;
  }
}

/* ==========================================================================
   Trainings Section (Parallax)
   ========================================================================== */

.trainings {
  padding: 100px 0;
  background: var(--light-gray);
}

.trainings.parallax-section {
  position: relative;
  background-image: url('assets/training_bg.jpg');
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.trainings-container {
  position: relative;
  z-index: 2;
}

.trainings-header {
  text-align: center;
  margin-bottom: 64px;
}

.trainings.parallax-section .trainings-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.trainings.parallax-section .trainings-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.trainings-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.trainings-header p {
  font-size: 18px;
  color: var(--secondary-color);
}

.trainings-content {
  width: 100%;
  max-width: 700px;
  margin: 0 0 0 auto;
}

.trainings-iframe {
  width: 100%;
  min-height: 800px;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.trainings-cta {
  margin-top: 32px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.trainings-cta a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.trainings-cta a:hover {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .trainings {
    padding: 60px 0;
  }

  .trainings.parallax-section {
    background-attachment: scroll; /* Disable fixed attachment on mobile for performance */
  }

  .trainings.parallax-section .trainings-header h2 {
    font-size: 32px;
  }

  .trainings-header h2 {
    font-size: 32px;
  }

  .trainings-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .trainings-iframe {
    min-height: 1200px;
  }
}

/* ==========================================================================
   Video Section
   ========================================================================== */

.video-section {
  padding: 80px 0;
  background: var(--background-color);
}

.video-content {
  max-width: 900px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  background: #000;
}

.video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .video-section {
    padding: 60px 0;
  }
}

/* ==========================================================================
   Trustpilot Section
   ========================================================================== */

.trustpilot-section {
  padding: 60px 0;
  background-color: var(--light-gray);
}

.trustpilot-content {
  max-width: 1200px;
  margin: 0 auto;
}

.trustpilot-widget {
  width: 100%;
}

@media (max-width: 768px) {
  .trustpilot-section {
    padding: 40px 0;
  }
}

/* ==========================================================================
   Footer / Contact Section
   ========================================================================== */

.footer {
  background: var(--primary-color);
  color: #fff;
  padding: 80px 0 32px;
  margin-top: auto;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-main {
  text-align: center;
}

.footer-main h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-main p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.footer-main p a {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
}

.footer-main p a:hover {
  color: var(--accent-color);
}

/* Contact Form */
.contact-form-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-form {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  padding: 48px 56px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  margin-bottom: 24px;
  text-align: left;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.15);
}

.submit-button {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #0052a3 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.submit-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.4);
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Form Messages */
.form-message {
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.5;
  animation: slideDown 0.3s ease;
}

.form-message.success {
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.5);
  color: #c8e6c9;
}

.form-message.error {
  background: rgba(244, 67, 54, 0.2);
  border: 1px solid rgba(244, 67, 54, 0.5);
  color: #ffcdd2;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 24px;
  }

  .footer-main h3 {
    font-size: 26px;
  }

  .footer-main p {
    font-size: 16px;
  }

  .contact-form {
    padding: 28px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group {
    margin-bottom: 20px;
  }
}

/* ==========================================================================
   Imprint Page
   ========================================================================== */

.imprint-page {
  min-height: 100vh;
  padding: 120px 0 60px;
  background-color: #fff;
}

.imprint-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.imprint-content h1 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
}

.imprint-section {
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e0e0e0;
}

.imprint-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.imprint-section h2 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.imprint-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 10px;
}

.imprint-section p:last-child {
  margin-bottom: 0;
}

.imprint-section strong {
  color: #1a1a1a;
  font-weight: 600;
}

.imprint-section a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.imprint-section a:hover {
  color: #0056b3;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .imprint-page {
    padding: 100px 0 40px;
  }

  .imprint-content {
    padding: 30px 20px;
    margin: 0 20px;
  }

  .imprint-content h1 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .imprint-section h2 {
    font-size: 1.3rem;
  }

  .imprint-section p {
    font-size: 0.95rem;
  }
}
