:root {
  --navy-dark: #0a1628;
  --navy-blue: #1e3a5f;
  --navy-light: #2c4f7c;
  --gold: #d4af37;
  --gold-light: #f4d03f;
  --gold-dark: #b8941f;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --border-color: #e0e6ed;
}

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

body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--navy-dark);
  background: var(--white);
}

.age-verification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 40, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-verification-modal {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 3px solid var(--gold);
}

.age-verification-modal .trophy-icon {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.age-verification-modal h2 {
  color: var(--navy-dark);
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.age-verification-modal p {
  margin-bottom: 2rem;
  color: #555;
}

.age-verification-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.age-btn {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.age-btn-confirm {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white;
}

.age-btn-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.age-btn-decline {
  background: #6c757d;
  color: white;
}

.age-btn-decline:hover {
  background: #5a6268;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-dark);
  color: white;
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  display: none;
}

.cookie-banner.show {
  display: block;
}

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

.cookie-content p {
  margin: 0;
  flex: 1;
}

.cookie-content a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: var(--gold);
  color: var(--navy-dark);
}

.cookie-btn-accept:hover {
  background: var(--gold-light);
}

.cookie-btn-decline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.navbar {
  background: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-dark);
  text-decoration: none;
}

.navbar-brand i {
  font-size: 2rem;
  color: var(--gold);
}

.navbar-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.navbar-menu a {
  color: var(--navy-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-menu a:hover {
  color: var(--gold);
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy-dark);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--navy-dark);
  padding: 0.6rem 1.5rem;
  border: 2px solid var(--navy-dark);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.hero {
  background: linear-gradient(
      135deg,
      rgba(10, 22, 40, 0.85) 0%,
      rgba(30, 58, 95, 0.7) 100%
    ),
    url("../img/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding: 10rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  display: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero h1 .highlight {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-hero-primary {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-hero-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-hero-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-hero-secondary:hover {
  background: white;
  color: var(--navy-dark);
}

.stats-section {
  background: var(--gold);
  padding: 3rem 2rem;
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item {
  color: var(--navy-dark);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-banner {
  background: var(--light-bg);
  padding: 1rem 2rem;
  text-align: center;
  border-bottom: 2px solid var(--gold);
}

.info-banner p {
  margin: 0;
  color: var(--navy-dark);
  font-weight: 500;
}

.info-banner strong {
  color: var(--gold);
}

section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header h2 {
  font-size: 2.8rem;
  color: var(--navy-dark);
  margin-bottom: 1rem;
  font-weight: 800;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.about-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--gold);
}

.about-card-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.about-card h3 {
  color: var(--navy-dark);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.about-card p {
  color: #666;
  line-height: 1.8;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--gold);
}

.timeline-item {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: calc(50% - 2rem);
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}

.timeline-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  border: 4px solid white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.timeline-content h3 {
  color: var(--navy-dark);
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.timeline-content p {
  color: #666;
  line-height: 1.8;
}

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

.benefit-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--light-bg);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefit-card:hover {
  background: white;
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

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

.benefit-card p {
  color: #666;
  line-height: 1.8;
}

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

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: var(--gold);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: white;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--light-bg);
}

.faq-question.active {
  background: var(--gold);
  color: white;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: #666;
  line-height: 1.8;
}

.responsible-section {
  background: var(--light-bg);
}

.responsible-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.responsible-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.responsible-card h3 {
  color: var(--navy-dark);
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.responsible-card h3 i {
  color: var(--gold);
  font-size: 2rem;
}

.responsible-card ul {
  list-style: none;
}

.responsible-card li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.responsible-card li:last-child {
  border-bottom: none;
}

.responsible-card li i {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.principles-list li i {
  color: #28a745;
}

.warning-signs li i {
  color: #dc3545;
}

.support-box {
  grid-column: 1 / -1;
  background: linear-gradient(
    135deg,
    var(--navy-dark) 0%,
    var(--navy-blue) 100%
  );
  color: white;
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
}

.support-box h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 800;
}

.support-box p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.support-box a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
}

.cta-section {
  background: linear-gradient(
    135deg,
    var(--navy-dark) 0%,
    var(--navy-blue) 100%
  );
  color: white;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "🏆";
  position: absolute;
  font-size: 15rem;
  opacity: 0.05;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.cta-section p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer {
  background: #1a2332;
  color: white;
  padding: 3rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.footer-brand i {
  font-size: 2rem;
  color: var(--gold);
}

.footer-brand span {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
}

.footer-description {
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 1rem;
  max-width: 900px;
}

.footer-description a {
  color: #4db8ff;
  text-decoration: none;
  font-weight: 600;
}

.footer-description a:hover {
  text-decoration: underline;
}

.footer-links-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 3rem;
  margin: 2.5rem 0;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
  color: white;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  padding: 0.4rem 0;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-section a:hover {
  color: white;
  padding-left: 0.3rem;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-logos a {
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.footer-logos a:hover {
  opacity: 0.8;
}

.footer-logos img {
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.footer-logo-item {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.footer-logo-item:hover {
  opacity: 0.8;
}

.footer-logo-item img {
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.age18 {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 1rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.age-badge-footer {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 1rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
}

.logo-trust .age18 {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 1rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-trust a {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.logo-trust a:hover {
  opacity: 0.8;
}

.logo-trust img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.gambleaware-logo {
  margin-top: 0.5rem;
}

.gambleaware-logo img {
  height: 50px;
  width: auto;
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
}

.footer-warning {
  background: transparent;
  padding: 1rem 0;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--gold);
}

.footer-warning i {
  color: #ffa500;
}

.footer-bottom p {
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-company {
  font-weight: 600;
  margin-top: 1rem;
}

.footer-trademark {
  font-size: 0.85rem;
  opacity: 0.7;
}

.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--navy-dark) 0%,
    var(--navy-blue) 100%
  );
  padding: 2rem;
}

.auth-box {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 450px;
  width: 100%;
  border: 3px solid var(--gold);
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h1 {
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.auth-header i {
  color: var(--gold);
}

.auth-header p {
  color: #666;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--navy-dark);
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
}

.btn-auth {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-auth:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.auth-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.auth-footer a {
  color: var(--navy-dark);
  font-weight: 600;
  text-decoration: none;
}

.auth-footer a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

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

.legal-header h1 {
  color: var(--navy-dark);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.legal-content h2 {
  color: var(--navy-dark);
  margin: 2rem 0 1rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.legal-content h3 {
  color: var(--navy-dark);
  margin: 1.5rem 0 0.8rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: #555;
}

.legal-content ul {
  margin: 1rem 0 1rem 2rem;
  line-height: 1.8;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: #555;
}

@media (max-width: 968px) {
  .navbar-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    padding: 2rem;
    transition: left 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

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

  .navbar-toggle {
    display: block;
  }

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

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: row !important;
  }

  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px;
  }

  .timeline-number {
    left: 30px;
  }

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

  .footer-links-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-logos {
    justify-content: flex-start;
  }

  .stats-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
  }

  .btn-hero {
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-cta {
    width: 100%;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

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

  .cookie-btn {
    width: 100%;
  }

  .footer-logos {
    justify-content: center;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  .age-badge-footer {
    min-width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .footer-logo-item img {
    max-height: 40px;
  }
}
