/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-family: "Segoe UI", "Roboto", "Arial", sans-serif;
  line-height: 1.7;
  color: #ffffff;
  background-color: #1a1a1a;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(255, 0, 0, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 0, 0, 0.03) 0%,
      transparent 50%
    );
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 0, 0, 0.3);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo h1 {
  color: #ff0000;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.logo h1:hover {
  text-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
  transform: scale(1.05);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1rem;
  margin: 0;
}

.nav-list a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  position: relative;
}

.nav-list a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #ff0000;
  transition: width 0.3s ease;
}

.nav-list a:hover {
  color: #ff0000;
  background-color: rgba(255, 0, 0, 0.1);
}

.nav-list a:hover::before {
  width: 80%;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  min-width: 120px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff3333 0%, #ff0000 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 0, 0, 0.4);
}

.btn-secondary {
  background-color: #2d2d2d;
  color: #ffffff;
  border: 2px solid #444444;
}

.btn-secondary:hover {
  background-color: #3d3d3d;
  border-color: #555555;
  transform: translateY(-2px);
}

.btn-play {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: #ffffff;
  font-size: 0.9rem;
  padding: 0.6rem 1.5rem;
  white-space: nowrap;
  border: 2px solid rgba(255, 0, 0, 0.5);
}

.btn-play:hover {
  background: linear-gradient(135deg, #ff3333 0%, #ff0000 100%);
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.5);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.2rem;
}

/* Mobile Menu Toggle */
.menu-checkbox {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0;
  position: relative;
  width: 30px;
  height: 24px;
  justify-content: center;
  align-items: center;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: absolute;
  left: 0;
  border-radius: 2px;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.menu-toggle span:nth-child(3) {
  bottom: 0;
}

/* Hero Section */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  background-image: url("images/Crimson Chip Lounge.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 4rem;
  color: #ff0000;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 800;
  text-shadow: 0 0 30px rgba(255, 0, 0, 0.5), 0 4px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #cccccc;
  margin-bottom: 2rem;
}

.hero-text {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.highlight {
  color: #ff0000;
  font-weight: 700;
  display: block;
  margin: 1rem 0;
  text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
  font-size: 1.4rem;
}

.hero-free {
  font-size: 1.2rem;
  color: #ff0000;
  margin-bottom: 2rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* Sections */
section {
  padding: 100px 0;
  position: relative;
}

section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 0, 0, 0.5),
    transparent
  );
}

section h2 {
  font-size: 3rem;
  color: #ff0000;
  text-align: center;
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 800;
  text-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
  position: relative;
  display: inline-block;
  width: 100%;
}

section h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff0000, transparent);
}

/* About Section */
.about-content {
  background-color: rgba(45, 45, 45, 0.3);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.about-content p {
  font-size: 1.15rem;
  line-height: 2;
  margin-bottom: 2rem;
  text-align: justify;
  color: #e0e0e0;
}

.about-image {
  width: 100%;
  max-width: 700px;
  margin: 3rem auto 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(255, 0, 0, 0.3), 0 0 0 2px rgba(255, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(255, 0, 0, 0.4), 0 0 0 2px rgba(255, 0, 0, 0.3);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.guide-content {
  background-color: rgba(45, 45, 45, 0.3);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.guide-content p {
  font-size: 1.15rem;
  line-height: 2;
  margin-bottom: 2rem;
  text-align: justify;
  color: #e0e0e0;
}

.guide-image {
  width: 100%;
  max-width: 700px;
  margin: 3rem auto 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(255, 0, 0, 0.3), 0 0 0 2px rgba(255, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(255, 0, 0, 0.4), 0 0 0 2px rgba(255, 0, 0, 0.3);
}

.guide-image img {
  width: 100%;
  height: auto;
  display: block;
}

.security-content {
  background-color: rgba(45, 45, 45, 0.3);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.security-content p {
  font-size: 1.15rem;
  line-height: 2;
  margin-bottom: 2rem;
  text-align: justify;
  color: #e0e0e0;
}

.security-image {
  width: 100%;
  max-width: 700px;
  margin: 3rem auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(255, 0, 0, 0.3), 0 0 0 2px rgba(255, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.security-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(255, 0, 0, 0.4), 0 0 0 2px rgba(255, 0, 0, 0.3);
}

.security-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Leaderboard */
.leaderboard-table {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.leaderboard .btn {
  display: block;
  margin: 2rem auto 0;
  text-align: center;
}

.leaderboard-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(45, 45, 45, 0.8) 0%,
    rgba(26, 26, 26, 0.8) 100%
  );
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 15px;
  border-left: 5px solid #ff0000;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.leaderboard-item:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 25px rgba(255, 0, 0, 0.3);
  border-left-width: 8px;
}

.rank {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff0000;
  width: 30px;
}

.name {
  font-weight: bold;
  flex-grow: 1;
  margin-left: 1rem;
}

.score {
  font-weight: bold;
  color: #ff0000;
  font-size: 1.3rem;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* Security Section */
.certificates {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.certificate-item {
  text-align: left;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(45, 45, 45, 0.9) 0%,
    rgba(26, 26, 26, 0.9) 100%
  );
  border-radius: 20px;
  border: 2px solid rgba(255, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.certificate-item:hover {
  transform: translateY(-10px);
  border-color: #ff0000;
  box-shadow: 0 10px 40px rgba(255, 0, 0, 0.4);
}

.certificate-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
}

.certificate-item h3 {
  color: #ff0000;
  margin-bottom: 0.5rem;
  text-align: left;
}

.certificate-item p {
  text-align: left;
  color: #e0e0e0;
  line-height: 1.6;
}

/* FAQ Section */
.faq-content {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(
    135deg,
    rgba(45, 45, 45, 0.8) 0%,
    rgba(26, 26, 26, 0.8) 100%
  );
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 15px;
  border-left: 5px solid #ff0000;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 30px rgba(255, 0, 0, 0.3);
  border-left-width: 8px;
}

.faq-item h3 {
  color: #ff0000;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.faq-item p {
  color: #e0e0e0;
  line-height: 1.8;
  font-size: 1.1rem;
  text-align: justify;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.review-card {
  background: linear-gradient(
    135deg,
    rgba(45, 45, 45, 0.8) 0%,
    rgba(26, 26, 26, 0.8) 100%
  );
  padding: 2.5rem;
  border-radius: 20px;
  border-left: 5px solid #ff0000;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 0, 0, 0.3);
  border-left-width: 8px;
}

.review-card h4 {
  color: #ff0000;
  margin-bottom: 1rem;
}

/* Contact */
.contact-content {
  text-align: center;
  font-size: 1.2rem;
}

.email-link {
  color: #ff0000;
  text-decoration: none;
  font-weight: bold;
}

.email-link:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, #000000 100%);
  padding: 3rem 0;
  text-align: center;
  border-top: 3px solid #ff0000;
  box-shadow: 0 -4px 20px rgba(255, 0, 0, 0.2);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 0, 0, 0.5),
    transparent
  );
}

.footer-links {
  margin-top: 1rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff0000;
}

.footer-banners {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.banner-18plus {
  height: 2rem;
  width: auto;
}

.banner-begambleaware {
  height: 1rem;
  width: auto;
}

.banner-gamcare {
  height: 2rem;
  width: auto;
}

.footer-banners a {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.footer-banners a:hover {
  opacity: 0.8;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-content {
  background: linear-gradient(
    135deg,
    rgba(45, 45, 45, 0.95) 0%,
    rgba(26, 26, 26, 0.95) 100%
  );
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 450px;
  width: 90%;
  border: 2px solid #ff0000;
  box-shadow: 0 10px 50px rgba(255, 0, 0, 0.4);
  backdrop-filter: blur(20px);
}

.modal-content h2 {
  color: #ff0000;
  margin-bottom: 1rem;
}

.modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  padding: 1rem;
  z-index: 1500;
  display: none;
  border-top: 2px solid #ff0000;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-content a {
  color: #ff0000;
  text-decoration: none;
}

.cookie-content a:hover {
  text-decoration: underline;
}

/* Legal Pages */
.legal-page {
  padding: 120px 0 80px;
  min-height: 100vh;
  background-color: #1a1a1a;
}

.legal-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 3px solid #ff0000;
}

.legal-header h1 {
  font-size: 3rem;
  color: #ff0000;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 800;
  text-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}

.legal-nav {
  margin-top: 1.5rem;
}

.legal-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  background-color: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
}

.legal-nav a:hover {
  color: #ff0000;
  background-color: rgba(255, 0, 0, 0.2);
  border-color: #ff0000;
  transform: translateX(-5px);
}

.legal-content {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(45, 45, 45, 0.5) 0%,
    rgba(26, 26, 26, 0.5) 100%
  );
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.legal-content section {
  padding: 0;
}

.legal-content h2 {
  font-size: 1.8rem;
  color: #ff0000;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  text-transform: none;
  letter-spacing: normal;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.5rem;
  color: #ff0000;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.legal-content p {
  color: #e0e0e0;
  line-height: 2;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-align: justify;
}

.legal-content ul {
  color: #e0e0e0;
  line-height: 2;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.legal-content a {
  color: #ff0000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.legal-content a:hover {
  text-decoration: underline;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* Placeholder Image */
.placeholder-image {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16/9;
  background-color: #444444;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888888;
  font-size: 1.2rem;
  margin: 2rem auto;
  border-radius: 10px;
  border: 2px dashed #666666;
}

/* Responsive Design */
@media (max-width: 900px) {
  /* Header responsive */
  .header-content {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .logo h1 {
    font-size: 1.2rem;
  }

  .menu-toggle {
    display: flex;
    order: 3;
  }

  .nav {
    position: fixed;
    top: 50px;
    right: 0;
    background-color: #000000;
    width: 250px;
    height: calc(100vh - 50px);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }

  .menu-checkbox:checked ~ .nav {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .nav-list a {
    display: block;
    padding: 0.8rem;
    text-align: center;
  }

  .btn-play {
    width: 100%;
    margin-top: 1rem;
  }

  /* Burger animation */
  .menu-checkbox:checked ~ .menu-toggle span:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
    top: 50%;
  }

  .menu-checkbox:checked ~ .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }

  .menu-checkbox:checked ~ .menu-toggle span:nth-child(3) {
    transform: translateY(50%) rotate(-45deg);
    bottom: 50%;
  }

  /* Hero responsive */
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-text {
    font-size: 1.1rem;
  }

  /* Sections responsive */
  section h2 {
    font-size: 2rem;
  }

  /* Leaderboard responsive */
  .leaderboard-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .rank {
    margin-bottom: 0.5rem;
  }

  /* Certificates responsive */
  .certificates {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .certificate-item {
    padding: 1.5rem;
  }

  .certificate-item h3 {
    font-size: 1.1rem;
  }

  .certificate-item p {
    font-size: 0.9rem;
  }

  /* FAQ responsive */
  .faq-item {
    padding: 1.5rem;
  }

  .faq-item h3 {
    font-size: 1.2rem;
  }

  .faq-item p {
    font-size: 1rem;
  }

  /* Legal pages responsive */
  .legal-header h1 {
    font-size: 2.5rem;
  }

  .legal-content {
    padding: 2rem;
  }

  .legal-content h2 {
    font-size: 1.6rem;
  }

  .legal-content h3 {
    font-size: 1.4rem;
  }

  /* Reviews responsive */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* Cookie banner responsive */
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .cookie-buttons {
    justify-content: center;
  }

  /* Contact responsive */
  .email-link {
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  section h2 {
    font-size: 1.8rem;
  }

  .modal-buttons {
    flex-direction: column;
  }

  .btn {
    min-width: 100px;
    padding: 0.7rem 1.2rem;
  }

  /* Certificates mobile */
  .certificates {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* FAQ mobile */
  .faq-item {
    padding: 1.5rem;
  }

  .faq-item h3 {
    font-size: 1.1rem;
  }

  .faq-item p {
    font-size: 1rem;
  }

  /* Legal pages mobile */
  .legal-header h1 {
    font-size: 2rem;
  }

  .legal-content {
    padding: 2rem 1.5rem;
  }

  .legal-content h2 {
    font-size: 1.5rem;
  }

  .legal-content h3 {
    font-size: 1.3rem;
  }

  .legal-content p,
  .legal-content li {
    font-size: 1rem;
  }
}
