/* Inter Font Face Declarations - Local Fonts */
@font-face {
  font-family: "Inter";
  src:
    url("assets/fonts/inter-v13-latin-300.woff2") format("woff2"),
    url("assets/fonts/inter-v13-latin-300.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src:
    url("assets/fonts/inter-v13-latin-400.woff2") format("woff2"),
    url("assets/fonts/inter-v13-latin-400.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src:
    url("assets/fonts/inter-v13-latin-500.woff2") format("woff2"),
    url("assets/fonts/inter-v13-latin-500.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src:
    url("assets/fonts/inter-v13-latin-600.woff2") format("woff2"),
    url("assets/fonts/inter-v13-latin-600.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src:
    url("assets/fonts/inter-v13-latin-700.woff2") format("woff2"),
    url("assets/fonts/inter-v13-latin-700.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

:root {
  --primary-color: #0066cc;
  --secondary-color: #00aaff;
  --accent-color: #fff3cd;
  --text-dark: #2b2b2b;
  --text-light: #666666;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #0066cc 0%, #00aaff 100%);
  --gradient-secondary: linear-gradient(135deg, #e3f2fd 0%, #f8fbff 100%);
  --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-logo h2 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.5rem;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 01.2rem;
}

.nav-phone i {
  font-size: 1.2rem;
}

.nav-phone a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.nav-phone a:hover {
  opacity: 0.8;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  min-height: 85vh;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%230066cc" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--primary-color);
}

.feature i {
  font-size: 1.2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-light);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 400px;
  height: 500px;
  object-fit: contain;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-light);
}

/* Logo Carousel Section */
.logo-carousel {
  min-height: 15vh;
  padding: 3rem 0;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

.carousel-container {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  animation: scroll 30s linear infinite;
  width: calc(200px * 12); /* 6 logos × 2 sets */
}

.carousel-item {
  flex: 0 0 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

.partner-logo {
  max-width: 80px;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px * 6)); /* Move by 6 logos */
  }
}

/* Pause animation on hover */
.carousel-container:hover .carousel-track {
  animation-play-state: paused;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-text-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.about-text-left p {
  margin-bottom: 1.5rem;
}

.about-text-right .about-highlight {
  margin: 0;
}

.about-highlight {
  background: var(--gradient-secondary);
  padding: 2rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
  margin-top: 2rem;
}

.about-highlight h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.about-img {
  width: 100%;
  height: 400px;
}

/* Benefits Section */
.benefits {
  padding: 6rem 0;
  background: var(--gradient-secondary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  overflow-y: hidden;
}

.benefit-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.benefit-icon i {
  font-size: 2rem;
  color: var(--white);
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.benefit-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Science Section */
.science {
  padding: 6rem 0;
  background: var(--white);
}

.science-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.science-card {
  background: var(--gradient-secondary);
  padding: 3rem;
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid rgba(0, 102, 204, 0.1);
}

.science-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.science-icon i {
  font-size: 2.5rem;
  color: var(--white);
}

.science-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.science-card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Target Audience Section */
.target-audience {
  padding: 5rem 0;
  background: var(--bg-light);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.audience-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.audience-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-small);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.audience-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.audience-icon i {
  font-size: 2rem;
  color: white;
}

.audience-card:hover .audience-icon {
  transform: scale(1.1);
}

.audience-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.audience-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.cta {
  padding: 6rem 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("assets/map.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-content a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}

.cta-content a:hover {
  color: var(--white);
  text-decoration: underline;
}

.cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.cta-phone i {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item i {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.contact-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--text-light);
}

.contact-form {
  background: var(--gradient-secondary);
  padding: 2.5rem;
  border-radius: var(--border-radius);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

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

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  vertical-align: middle;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--white);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-contact-item i {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

.footer-contact-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow-light);
    padding: 2rem 0;
    transform: none;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-phone {
    display: flex;
    font-size: 0.8rem;
  }

  .nav-toggle {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.75rem;
  }

  .hero-img {
    width: 300px;
    height: 400px;
  }

  .hero-features {
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-text-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-img {
    height: 300px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .science-content {
    grid-template-columns: 1fr;
  }

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

  .audience-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hero-cta {
    justify-content: center;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  /* Logo carousel tablet adjustments */
  .carousel-item {
    flex: 0 0 160px;
  }

  .carousel-track {
    width: calc(160px * 12);
    animation-duration: 22s;
  }

  .partner-logo {
    max-width: 70px;
    max-height: 50px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 90vh;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.6rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .hero-img {
    display: none;
  }

  .logo-img {
    height: 30px;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .benefit-card,
  .science-card,
  .audience-card {
    padding: 1.5rem;
  }

  .audience-grid-4 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .about-img {
    height: 250px;
  }

  .carousel-item {
    flex: 0 0 120px;
  }

  .carousel-track {
    width: calc(120px * 12);
    animation-duration: 25s;
  }

  .partner-logo {
    max-width: 36px;
    max-height: 24px;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-120px * 6));
    }
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.about-content,
.benefit-card,
.science-card {
  animation: fadeInUp 0.8s ease-out;
}

/* YouTube Video Section */
.video-section {
  padding: 6rem 0;
  background: var(--gradient-secondary);
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.video-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

/* Responsive video sizing */
@media (max-width: 768px) {
  .video-container iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .video-container iframe {
    height: 250px;
  }
}

.hero-video-container {
  width: 400px;
  height: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  animation: float 6s ease-in-out infinite;
}

.hero-video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 480px) {
  .hero-video-container {
    width: 300px;
    height: 225px;
  }
}

@media (max-width: 768px) {
  .hero-video-container {
    width: 350px;
    height: 262px;
  }
}

/* FAQ Section */
.faq {
  padding: 6rem 0;
  background: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  background: var(--gradient-secondary);
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--accent-color);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-question i {
  font-size: 1rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--white);
}

.faq-item.active .faq-answer {
  max-height: 480px;
}

.faq-answer p {
  padding: 0 2rem 1.5rem;
  margin: 0;
  color: var(--text-light);
  line-height: 1.6;
  padding: 20px;
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-question {
    padding: 1.2rem 1.5rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 1.5rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .faq-question {
    padding: 1rem 1.2rem;
  }

  .faq-question h3 {
    font-size: 0.95rem;
  }

  .faq-answer p {
    padding: 0 1.2rem 1rem;
    font-size: 0.9rem;
  }
}

/* Video Thumbnail Styles */
.video-thumbnail {
  display: block;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
  text-decoration: none;
  max-width: 800px;
  margin: 0 auto;
}

.video-thumbnail:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.video-screenshot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  transition: var(--transition);
}

.video-overlay:hover {
  background: rgba(0, 0, 0, 0.8);
}

.video-overlay i {
  font-size: 4rem;
  color: #ff0000;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-overlay span {
  font-size: 1.2rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Responsive Video Thumbnail */
@media (max-width: 768px) {
  .video-overlay i {
    font-size: 3rem;
  }

  .video-overlay span {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .video-overlay i {
    font-size: 2.5rem;
  }

  .video-overlay span {
    font-size: 0.9rem;
  }
}

/* Legal Notice Page Styles */
.legal-content {
  padding: 8rem 0 4rem 0;
  background: var(--white);
  min-height: 100vh;
}

.legal-content .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.legal-content .section-header h1 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.legal-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-top: 20px;
  font-weight: 600;
}

.legal-section h3 {
  font-size: 1.3rem;
  margin: 1.5rem 0 1rem 0;
  font-weight: 600;
}

.legal-section h4 {
  font-size: 1.1rem;
  margin: 1.5rem 0 1rem 0;
  font-weight: 600;
}

.legal-section p {
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.legal-section ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.legal-section ul li {
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.legal-section a {
  color: inherit;
  text-decoration: underline;
}

.legal-section a:hover {
  text-decoration: none;
}

.company-info {
  margin: 1rem 0;
}

.company-info p {
  margin-bottom: 0.5rem;
}

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

.legal-section .contact-info {
  gap: 0;
}

.back-to-home {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.back-to-home .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Responsive Legal Notice */
@media (max-width: 768px) {
  .legal-content {
    padding: 6rem 0 3rem 0;
  }

  .legal-content .section-header h1 {
    font-size: 2.5rem;
  }

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

  .legal-section h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .legal-content .section-header h1 {
    font-size: 2rem;
  }

  .legal-section h2 {
    font-size: 1.2rem;
  }

  .back-to-home .btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

.pvo_weelbeing {
  margin-top: 80px;
}

/* Impressum / Datenschutzerklärung Styles */
.impressum-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.7;
  color: #333;
}

.impressum-container h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #1a1a1a;
  border-bottom: 3px solid #007bff;
  padding-bottom: 1rem;
}

.impressum-container h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.impressum-container h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #34495e;
}

.impressum-container p {
  margin-bottom: 1rem;
  color: #555;
}

.impressum-container ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.impressum-container li {
  margin-bottom: 0.5rem;
  color: #555;
}

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

.impressum-container a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.impressum-container strong {
  font-weight: 600;
  color: #2c3e50;
}

.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #0056b3;
}

.impressum-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #ddd;
}

@media (max-width: 768px) {
  .impressum-container {
    padding: 2rem 1rem;
  }

  .impressum-container h2 {
    font-size: 1.5rem;
  }

  .impressum-container h3 {
    font-size: 1.3rem;
  }

  .impressum-container h4 {
    font-size: 1.1rem;
  }
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  padding: 1.5rem 2rem;
  border-top: 3px solid var(--primary-color);
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1;
  min-width: 300px;
}

.cookie-consent-text h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.cookie-consent-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.cookie-consent-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-consent-links a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.cookie-consent-links a:hover {
  text-decoration: underline;
}

.cookie-consent-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-cookie {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-cookie-accept {
  background: var(--gradient-primary);
  color: var(--white);
}

.btn-cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-cookie-necessary {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-cookie-necessary:hover {
  background: var(--primary-color);
  color: var(--white);
}

.btn-cookie-settings {
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--border-color);
}

.btn-cookie-settings:hover {
  background: var(--gradient-secondary);
  border-color: var(--primary-color);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cookie-settings-content {
  background: var(--white);
  border-radius: var(--border-radius);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-large);
  animation: slideDown 0.3s ease-out;
}

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

.cookie-settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 2px solid var(--gradient-secondary);
}

.cookie-settings-header h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 0;
  font-weight: 600;
}

.cookie-settings-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-light);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.cookie-settings-close:hover {
  background: var(--gradient-secondary);
  color: var(--primary-color);
}

.cookie-settings-body {
  padding: 2rem;
}

.cookie-setting-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-setting-item:last-child {
  border-bottom: none;
}

.cookie-setting-info {
  flex: 1;
}

.cookie-setting-info h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.cookie-setting-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Cookie Toggle Switch */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition);
  border-radius: 26px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: var(--transition);
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-slider {
  background: var(--gradient-primary);
}

.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-settings-footer {
  padding: 1.5rem 2rem;
  border-top: 2px solid var(--gradient-secondary);
  text-align: right;
}

/* Responsive Cookie Consent */
@media (max-width: 768px) {
  .cookie-consent {
    padding: 1.25rem 1.5rem;
  }

  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  .cookie-consent-text {
    min-width: 100%;
  }

  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }

  .btn-cookie {
    width: 100%;
    padding: 0.875rem 1.25rem;
  }

  .cookie-settings-content {
    margin: 1rem;
    max-height: calc(100vh - 2rem);
  }

  .cookie-settings-header,
  .cookie-settings-body,
  .cookie-settings-footer {
    padding: 1.25rem;
  }

  .cookie-setting-item {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-toggle {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .cookie-consent {
    padding: 1rem;
  }

  .cookie-consent-text h3 {
    font-size: 1.1rem;
  }

  .cookie-consent-text p {
    font-size: 0.85rem;
  }

  .cookie-consent-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cookie-settings-header h3 {
    font-size: 1.3rem;
  }
}
