/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #f8fafc;
  background: #0f172a;
  overflow-x: hidden;
}

/* Color Variables */
:root {
  --midnight-blue: #0f172a;
  --midnight-blue-light: #1e293b;
  --electric-violet: #8b5cf6;
  --electric-violet-dark: #7c3aed;
  --silver-white: #f8fafc;
  --silver-gray: #e2e8f0;
  --silver-dark: #94a3b8;
  --gradient-primary: linear-gradient(
    135deg,
    var(--electric-violet) 0%,
    var(--electric-violet-dark) 100%
  );
  --gradient-bg: linear-gradient(
    135deg,
    var(--midnight-blue) 0%,
    var(--midnight-blue-light) 100%
  );
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--silver-white);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  color: var(--silver-white);
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border-top: 2px solid var(--electric-violet);
  padding: 1rem;
  z-index: 1000;
  box-shadow: 0 -10px 30px rgba(139, 92, 246, 0.1);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.cookie-text p {
  font-size: 0.9rem;
  color: var(--silver-gray);
  margin: 0;
}

.cookie-text a {
  color: var(--electric-violet);
  text-decoration: underline;
}

.cookie-text a:hover {
  color: var(--electric-violet-dark);
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: var(--gradient-primary);
  color: var(--silver-white);
}

.cookie-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.cookie-decline {
  background: transparent;
  color: var(--silver-gray);
  border: 1px solid var(--silver-dark);
}

.cookie-decline:hover {
  background: var(--silver-dark);
  color: var(--midnight-blue);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  z-index: 900;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand h1 {
  font-family: "Orbitron", monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--electric-violet);
  margin: 0;
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-link {
  color: var(--silver-gray);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--electric-violet);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.cta-btn {
  background: var(--gradient-primary);
  color: var(--silver-white);
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* CSS-Only Burger Menu */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 30px;
}

.burger-line {
  width: 30px;
  height: 3px;
  background: var(--electric-violet);
  border-radius: 3px;
  position: absolute;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.burger-line:nth-child(1) {
  top: 6px;
}

.burger-line:nth-child(2) {
  top: 13px;
}

.burger-line:nth-child(3) {
  top: 20px;
}

/* Burger Animation */
.nav-toggle:checked + .nav-toggle-label .burger-line:nth-child(1) {
  transform: rotate(45deg);
  top: 13px;
}

.nav-toggle:checked + .nav-toggle-label .burger-line:nth-child(2) {
  transform: scale(0);
  opacity: 0;
}

.nav-toggle:checked + .nav-toggle-label .burger-line:nth-child(3) {
  transform: rotate(-45deg);
  top: 13px;
}

/* Mobile Navigation */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  padding: 2rem 0;
  gap: 1.5rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 1px solid rgba(139, 92, 246, 0.3);
  display: none;
}

.nav-toggle:checked ~ .mobile-nav {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  display: flex;
}

.mobile-nav-link {
  color: var(--silver-gray);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.8rem 2rem;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--electric-violet);
  background: rgba(139, 92, 246, 0.1);
}

.mobile-cta-btn {
  background: var(--gradient-primary);
  color: var(--silver-white);
  padding: 1rem 2rem;
  margin: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.mobile-cta-btn:hover {
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

/* Mobile Menu Responsive - <900px */
@media (max-width: 900px) {
  .nav-toggle-label {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .nav-container {
    padding: 1rem;
  }
}

/* Hero Section */
.hero {
  padding: 150px 0 100px;
  background: var(--gradient-bg);
  background-image: url("images/Echo Network Galaxy.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.85) 0%,
      rgba(30, 41, 59, 0.8) 100%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(139, 92, 246, 0.05) 0%,
      transparent 50%
    );
  z-index: 1;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  color: var(--electric-violet);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--silver-white);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--silver-gray);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero-cta {
  margin-top: 2rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--silver-white);
  padding: 1.2rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--electric-violet);
  padding: 1.2rem 2.5rem;
  border: 2px solid var(--electric-violet);
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--gradient-primary);
  color: var(--silver-white);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
}

/* About Section */
.about {
  padding: 100px 0;
  background: var(--midnight-blue-light);
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  color: var(--silver-gray);
}

.about-intro {
  font-size: 1.2rem;
  color: var(--silver-white);
  margin-bottom: 2rem;
  font-weight: 500;
}

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.02);
}

/* Image Placeholder */
.image-placeholder {
  aspect-ratio: 16/9;
  background: #374151;
  border: 2px dashed var(--silver-dark);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--silver-dark);
  width: 100%;
  max-width: 400px;
}

.image-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.image-placeholder span {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.image-placeholder small {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: var(--midnight-blue);
}

.services-content {
  max-width: 1000px;
  margin: 0 auto;
}

.services-intro {
  font-size: 1.2rem;
  color: var(--silver-white);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 500;
}

.services-description {
  color: var(--silver-gray);
  text-align: center;
  margin-bottom: 4rem;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-item {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  border-color: var(--electric-violet);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: var(--silver-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-item h3 {
  color: var(--electric-violet);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-item p {
  color: var(--silver-gray);
  line-height: 1.6;
}

/* Podcasts Section */
.podcasts {
  padding: 100px 0;
  background: var(--midnight-blue-light);
}

.podcasts-intro {
  text-align: center;
  color: var(--silver-gray);
  margin-bottom: 4rem;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.podcasts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.podcast-item {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.podcast-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

.podcast-image {
  width: 100%;
  overflow: hidden;
}

.podcast-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.podcast-item:hover .podcast-image img {
  transform: scale(1.05);
}

.podcast-content {
  padding: 2rem;
}

.podcast-content h3 {
  color: var(--electric-violet);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.podcast-content p {
  color: var(--silver-gray);
  line-height: 1.6;
}

/* Reviews Section */
.reviews {
  padding: 100px 0;
  background: var(--midnight-blue);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.review-item {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.review-item:hover {
  transform: translateY(-5px);
  border-color: var(--electric-violet);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

.review-content {
  margin-bottom: 2rem;
}

.review-content p {
  color: var(--silver-gray);
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
}

.review-author h4 {
  color: var(--electric-violet);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.review-author span {
  color: var(--silver-dark);
  font-size: 0.9rem;
}

/* Call to Action Section */
.cta-section {
  padding: 80px 0;
  background: var(--gradient-primary);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--silver-white);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--silver-white);
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--midnight-blue-light);
}

.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: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--silver-white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-details h4 {
  color: var(--electric-violet);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-details p,
.contact-details a {
  color: var(--silver-gray);
  text-decoration: none;
  line-height: 1.5;
}

.contact-details a:hover {
  color: var(--electric-violet);
}

/* Contact Form */
.contact-form {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 15px;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--silver-white);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 8px;
  color: var(--silver-white);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--electric-violet);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Custom Checkbox */
.checkbox-group {
  margin: 2rem 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--silver-gray);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--electric-violet);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked {
  background: var(--gradient-primary);
}

.checkbox-label input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--silver-white);
  font-size: 14px;
  font-weight: bold;
}

.checkbox-label a {
  color: var(--electric-violet);
  text-decoration: underline;
}

.checkbox-label a:hover {
  color: var(--electric-violet-dark);
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: var(--midnight-blue);
}

.faq-grid {
  display: grid;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--electric-violet);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}

.faq-question {
  color: var(--electric-violet);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.faq-answer {
  color: var(--silver-gray);
  line-height: 1.7;
}

/* Footer */
.footer {
  background: var(--midnight-blue);
  border-top: 2px solid var(--electric-violet);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--electric-violet);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-section h4 {
  color: var(--silver-white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--silver-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--silver-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--electric-violet);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(139, 92, 246, 0.2);
  color: var(--electric-violet);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gradient-primary);
  color: var(--silver-white);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(139, 92, 246, 0.3);
}

.footer-bottom p {
  color: var(--silver-dark);
  font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  /* Ensure hero content is not hidden under fixed header */
  .hero {
    padding: 140px 0 90px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .podcasts-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .cookie-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .nav-container {
    padding: 1rem;
  }

  .nav-brand h1 {
    font-size: 1.4rem;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.1;
  }

  /* Extra spacing under the fixed header on very small screens */
  .hero {
    padding: 150px 0 90px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

/* Legal Pages Styling */
.legal-content {
  padding: 120px 0 80px;
  background: var(--midnight-blue-light);
  min-height: 100vh;
}

.legal-title {
  font-size: 3rem;
  color: var(--electric-violet);
  text-align: center;
  margin-bottom: 1rem;
}

.legal-updated {
  text-align: center;
  color: var(--silver-dark);
  margin-bottom: 3rem;
  font-style: italic;
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 15px;
  padding: 3rem;
}

.legal-text h2 {
  color: var(--electric-violet);
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(139, 92, 246, 0.3);
  padding-bottom: 0.5rem;
}

.legal-text h3 {
  color: var(--silver-white);
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.legal-text p {
  color: var(--silver-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-text ul,
.legal-text ol {
  color: var(--silver-gray);
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-text li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.legal-text a {
  color: var(--electric-violet);
  text-decoration: underline;
}

.legal-text a:hover {
  color: var(--electric-violet-dark);
}

.legal-text strong {
  color: var(--silver-white);
  font-weight: 600;
}

/* Cookie Banner JavaScript Alternative */
.cookie-banner.accepted {
  display: none;
}

.cookie-banner.declined {
  display: none;
}
