@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --primary-color: #1e40af;
  --secondary-color: #3b82f6;
  --accent-color: #60a5fa;
  --dark-bg: #0f172a;
  --darker-bg: #020617;
  --light-bg: #f8fafc;
  --text-light: #ffffff;
  --text-dark: #1e293b;
  --text-gray: #64748b;
  --success-color: #10b981;
  --warning-color: #f59e0b;

  --font-display: "Montserrat", sans-serif;
  --font-body: "Inter", sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(15px);
}

.age-modal.hidden {
  display: none;
}

.age-modal-content {
  background: white;
  padding: 60px 50px;
  border-radius: 24px;
  text-align: center;
  max-width: 520px;
  width: 90%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: modalSlideIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.age-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.age-modal h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.age-modal p {
  font-size: 1.05rem;
  margin-bottom: 30px;
  color: var(--text-gray);
  font-weight: 400;
}

.age-disclaimer {
  font-size: 0.85rem !important;
  margin-top: 25px !important;
  margin-bottom: 0 !important;
  opacity: 0.7;
  line-height: 1.5;
}

.age-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-large,
.btn-accept,
.btn-nav-cta {
  padding: 14px 32px;
  border: none;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--text-light);
  box-shadow: 0 4px 14px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.4);
}

.btn-secondary {
  background: var(--light-bg);
  color: var(--text-dark);
  border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
  background: #e2e8f0;
  border-color: var(--text-gray);
}

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

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--text-light);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-accept {
  padding: 12px 28px;
  font-size: 0.9rem;
}

.btn-nav-cta {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 10px 24px;
  font-size: 0.9rem;
}

.btn-nav-cta:hover {
  background: var(--secondary-color);
  transform: translateY(-1px);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  border-top: 1px solid #e2e8f0;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  animation: slideUp 0.4s ease-out;
}

.cookie-banner.hidden {
  display: none;
}

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

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

.cookie-content p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.cookie-content p i {
  font-size: 1.5rem;
  color: var(--warning-color);
}

.cookie-content a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 500;
}

.site-header {
  background: white;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: all 0.3s;
  justify-content: center;
}

.logo i {
  font-size: 1.8rem;
}

.logo:hover {
  color: var(--secondary-color);
  transform: scale(1.02);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

.nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
  position: relative;
}

.nav-menu a:not(.btn-nav-cta)::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s;
}

.nav-menu a:not(.btn-nav-cta):hover::after,
.nav-menu a:not(.btn-nav-cta).active::after {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 1.3rem;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.mobile-toggle:hover {
  background: var(--primary-color);
  color: white;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(0, 217, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 102, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(255, 0, 255, 0.1) 0%,
      transparent 50%
    ),
    url("../img/hero-bg.png");
  background-size: cover;
  background-position: center;
  z-index: -1;
  animation: bgPulse 15s ease-in-out infinite;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(15, 23, 42, 0.8) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 30px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
  color: var(--accent-color);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 25px;
  color: white;
  letter-spacing: -1px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-color), #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-trust {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item i {
  font-size: 2.2rem;
  color: var(--accent-color);
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: white;
  line-height: 1;
  font-weight: 700;
}

.trust-item span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

section {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text-dark);
  letter-spacing: -1px;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.about {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.about-features {
  margin: 35px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: var(--text-dark);
}

.about-feature i {
  color: var(--success-color);
  font-size: 1.2rem;
}

.about-image {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
  box-shadow: 0 20px 40px rgba(30, 64, 175, 0.3);
}

.about-img-placeholder p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-top: 20px;
}

.about-stats {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  width: 90%;
}

.stat-box {
  flex: 1;
  background: white;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 800;
  line-height: 1;
}

.stat-box span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-top: 8px;
}

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

.lotteries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.lottery-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  position: relative;
}

.lottery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.lottery-card.featured {
  border: 2px solid var(--primary-color);
  background: linear-gradient(135deg, #eff6ff 0%, white 100%);
}

.lottery-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary-color);
  color: white;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lottery-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.lottery-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.lottery-jackpot {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: var(--text-gray);
}

.lottery-jackpot strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--primary-color);
  display: block;
  font-weight: 800;
}

.lottery-card > p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 25px;
}

.lottery-details {
  list-style: none;
  padding: 20px 0;
  margin: 20px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
}

.lottery-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.lottery-details li:last-child {
  margin-bottom: 0;
}

.lottery-details i {
  color: var(--primary-color);
  width: 18px;
}

.features {
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.feature-card {
  background: var(--light-bg);
  border-radius: 16px;
  padding: 40px 30px;
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 1rem;
}

.how-it-works {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.step {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.step-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin: 20px 0 25px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.step p {
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 0.98rem;
  margin-bottom: 20px;
}

.step-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--light-bg);
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 500;
}

.step-note i {
  color: var(--primary-color);
}

.testimonials {
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--light-bg);
  border-radius: 20px;
  padding: 35px;
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
  color: var(--warning-color);
  font-size: 1.1rem;
}

.testimonial-card > p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-author span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-gray);
}

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

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

.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 35px;
  cursor: pointer;
  transition: all 0.3s;
}

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

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

.faq-question i {
  font-size: 1.2rem;
  color: var(--primary-color);
  transition: transform 0.3s;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 35px 28px 35px;
}

.faq-answer p {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
}

.faq-answer a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 500;
}

.contact {
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.contact-card {
  background: var(--light-bg);
  text-align: center;
  padding: 40px 30px;
  border-radius: 16px;
  transition: all 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.contact-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: block;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.contact-card p {
  font-size: 1.15rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-card span {
  font-size: 0.9rem;
  color: var(--text-gray);
  display: block;
  margin-bottom: 5px;
}

.cta {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: ctaFloat 20s ease-in-out infinite;
}

@keyframes ctaFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-30px, -30px) rotate(5deg);
  }
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.cta-actions .btn-primary {
  background: white;
  color: var(--primary-color);
}

.cta-actions .btn-primary:hover {
  background: var(--light-bg);
}

.cta-actions .btn-outline {
  border-color: white;
  color: white;
}

.cta-actions .btn-outline:hover {
  background: white;
  color: var(--primary-color);
}

.cta-trust {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
}

.trust-badge i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.site-footer {
  background: var(--darker-bg);
  padding: 60px 0 30px;
  color: rgba(255, 255, 255, 0.7);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.g-5 > * {
  padding: 15px;
}

.col-lg-4,
.col-lg-2,
.col-lg-3 {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.footer-heading-blue {
  color: var(--accent-color);
}

.footer-heading-green {
  color: var(--success-color);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-2 {
  gap: 15px;
}

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

.justify-content-lg-start {
  justify-content: flex-start;
}

.footer-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  transition: all 0.3s;
  opacity: 0.8;
}

.footer-img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.footer-img-invert {
  filter: brightness(0.8);
}

.footer-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.footer-badge {
  background: white;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-height: 80px;
}

.footer-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.footer-badge img {
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
}

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

.mt-5 {
  margin-top: 3rem;
}

.form-container {
  max-width: 520px;
  margin: 100px auto;
  padding: 50px 40px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-container h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 35px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

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

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--light-bg);
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  color: var(--text-dark);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-group input::placeholder {
  color: var(--text-gray);
}

.form-submit {
  width: 100%;
  margin-top: 30px;
}

.form-footer {
  text-align: center;
  margin-top: 25px;
  font-size: 0.95rem;
  color: var(--text-gray);
}

.form-footer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

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

.content-page {
  padding: 100px 0;
  background: white;
  min-height: 70vh;
}

.content-page h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 30px;
  text-align: center;
  color: var(--text-dark);
  letter-spacing: -1px;
}

.content-page h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 20px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.content-page h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 35px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.content-page p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.content-page ul {
  margin: 20px 0;
  padding-left: 30px;
}

.content-page li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 12px;
}

.content-page a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 500;
}

.content-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .steps-timeline {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

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

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

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

  .about-content h2 {
    font-size: 2rem;
  }

  .hero-trust {
    gap: 25px;
  }

  .trust-item {
    flex-direction: column;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }

  .form-container {
    margin: 50px 20px;
    padding: 35px 25px;
  }

  .content-container {
    padding: 30px 20px;
  }

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .logo span {
    font-size: 1.1rem;
  }

  .age-modal-content {
    padding: 40px 25px;
  }

  .age-modal h2 {
    font-size: 1.8rem;
  }

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