:root {
  --primary-blue: #2563eb;
  --accent-orange: #ea580c;
  --bright-blue: #3b82f6;
  --deep-navy: #1e293b;
  --darker-navy: #0f172a;
  --light-text: #f1f5f9;
  --muted-text: #94a3b8;
  --success-green: #059669;
  --warning-amber: #d97706;
  --danger-red: #dc2626;
  --border-slate: #475569;
  --gradient-main: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
  --gradient-accent: linear-gradient(135deg, var(--accent-orange), #dc2626);
  --gradient-safe: linear-gradient(135deg, #10b981, #059669);
  --gradient-warning: linear-gradient(135deg, #f59e0b, #d97706);
  --gradient-danger: linear-gradient(135deg, #ef4444, #dc2626);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--light-text);
  background: var(--deep-navy);
  overflow-x: hidden;
}

.menu-checkbox {
  display: none;
}

.menu-checkbox:checked + .menu-item .menu-arrow {
  transform: rotate(180deg);
  color: var(--accent-orange);
}

.menu-checkbox:checked ~ .submenu-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 500px;
  margin-top: 0.5rem;
  overflow-y: auto;
}

.menu-item a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    width: 100%;
}

.menu-item a:hover {
    color: var(--accent-orange);
}

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

img {
  max-width: 100%;
  height: auto;
}

/* Header Styles */
.main-header {
  background: rgba(30, 41, 59, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-slate);
}

.header-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  height: 85px;
}

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

.primary-navigation .navigation-menu {
  display: flex;
  list-style: none;
  gap: 1rem;
}

.menu-item {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.menu-item:hover,
.menu-item.active {
  color: var(--accent-orange);
}

.dropdown-container {
  position: relative;
}

.menu-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  color: var(--muted-text);
}

.submenu-list {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--darker-navy);
  border: 1px solid var(--border-slate);
  border-radius: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.submenu-list li {
  margin: 0;
}

.submenu-list a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--light-text);
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 0.9rem;
}

.submenu-list a:hover {
  background: rgba(234, 88, 12, 0.1);
  color: var(--accent-orange);
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--light-text);
  margin: 3px 0;
  transition: 0.3s;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  line-height: 1;
}

.button-primary {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

.button-outline {
  background: transparent;
  color: var(--accent-orange);
  border: 2px solid var(--accent-orange);
}

.button-outline:hover {
  background: var(--accent-orange);
  color: white;
}

/* Hero Section */
.rg-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--darker-navy) 0%, #1a1f36 50%, var(--deep-navy) 100%);
  position: relative;
  padding: 8rem 0 4rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.safety-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-safe);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.badge-icon {
  font-size: 1.2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.title-safe {
  display: block;
  background: var(--gradient-safe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3rem;
  margin-top: 0.5rem;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--muted-text);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.quick-tools {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.tool-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  color: var(--light-text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.tool-link:hover {
  transform: translateY(-3px);
  border-color: var(--success-green);
  background: rgba(16, 185, 129, 0.1);
}

.tool-icon {
  font-size: 1.2rem;
}

.balance-illustration {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.balance-scale {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.scale-left,
.scale-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scale-center {
  font-size: 3rem;
  animation: balance 3s ease-in-out infinite;
}

@keyframes balance {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-5deg);
  }
}

.scale-icon {
  font-size: 2rem;
}

.scale-label {
  font-size: 0.9rem;
  color: var(--muted-text);
}

.balance-message {
  color: var(--success-green);
  font-weight: 600;
  margin-top: 1rem;
}

/* Self-Assessment Section */
.self-assessment {
  padding: 6rem 0;
  background: var(--darker-navy);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: var(--gradient-safe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--muted-text);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.assessment-intro {
  text-align: center;
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.intro-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.assessment-intro h3 {
  color: var(--light-text);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.assessment-quiz {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.quiz-question {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.quiz-question:hover {
  border-color: var(--success-green);
}

.question-text {
  color: var(--light-text);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.question-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.option-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 120px;
}

.option-label:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: var(--success-green);
}

.option-label input[type="radio"] {
  margin: 0;
}

.option-text {
  color: var(--light-text);
  font-weight: 500;
}

.assessment-submit {
  background: var(--gradient-safe);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 2rem auto;
  display: block;
}

.assessment-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.assessment-results {
  margin-top: 2rem;
  text-align: center;
}

.result-content {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid;
}

.result-content.safe {
  border-color: var(--success-green);
  background: rgba(16, 185, 129, 0.1);
}

.result-content.caution {
  border-color: var(--warning-amber);
  background: rgba(245, 158, 11, 0.1);
}

.result-content.danger {
  border-color: var(--danger-red);
  background: rgba(239, 68, 68, 0.1);
}

.result-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.result-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.result-description {
  color: var(--muted-text);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.result-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.result-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.result-btn.primary {
  background: var(--gradient-safe);
  color: white;
}

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

/* Gaming Tools Section */
.gaming-tools {
  padding: 6rem 0;
  background: var(--deep-navy);
}

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

.tool-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.tool-card.primary {
  border-color: var(--success-green);
  background: rgba(16, 185, 129, 0.1);
  transform: scale(1.02);
}

.tool-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.tool-card.primary:hover {
  transform: scale(1.02) translateY(-8px);
}

.tool-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.tool-icon {
  font-size: 2.5rem;
}

.tool-header h3 {
  color: var(--light-text);
  font-size: 1.4rem;
  margin: 0 1rem;
  flex: 1;
}

.tool-badge {
  background: var(--gradient-accent);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.tool-content p {
  color: var(--muted-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.tool-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--success-green);
  font-size: 0.9rem;
  font-weight: 500;
}

.feature-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.tool-action {
  display: inline-block;
  background: var(--gradient-safe);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

.tool-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.tools-info {
  margin-top: 3rem;
}

.info-card {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 16px;
  padding: 2rem;
}

.info-card h4 {
  color: var(--warning-amber);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.info-card ul {
  list-style: none;
  padding: 0;
}

.info-card li {
  color: var(--light-text);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.info-card li::before {
  content: '•';
  color: var(--warning-amber);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Warning Signs Section */
.warning-signs {
  padding: 6rem 0;
  background: var(--darker-navy);
}

.signs-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

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

.sign-category {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid;
  transition: transform 0.3s ease;
}

.sign-category[data-level="early"] {
  border-color: var(--warning-amber);
}

.sign-category[data-level="serious"] {
  border-color: var(--accent-orange);
}

.sign-category[data-level="critical"] {
  border-color: var(--danger-red);
}

.sign-category:hover {
  transform: translateY(-5px);
}

.category-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.category-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.category-header h3 {
  color: var(--light-text);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.category-header p {
  color: var(--muted-text);
  font-size: 0.9rem;
}

.signs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sign-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: var(--light-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.sign-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.action-steps {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.action-steps h3 {
  color: var(--light-text);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.6rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.step-card {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-3px);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--gradient-safe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 1rem;
}

.step-card h4 {
  color: var(--light-text);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.step-card p {
  color: var(--muted-text);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Support Resources Section */
.support-resources {
  padding: 6rem 0;
  background: var(--deep-navy);
}

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

.support-category h3 {
  color: var(--light-text);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.support-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.support-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.support-item:hover {
  transform: translateY(-3px);
  border-color: var(--success-green);
}

.support-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

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

.support-type {
  background: var(--success-green);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.support-item p {
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

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

.contact-label {
  color: var(--muted-text);
  font-size: 0.9rem;
}

.contact-value {
  color: var(--light-text);
  font-weight: 600;
  font-size: 0.9rem;
}

.emergency-help {
  margin-top: 3rem;
}

.emergency-card {
  background: var(--gradient-danger);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  color: white;
}

.emergency-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.emergency-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.emergency-card p {
  margin-bottom: 2rem;
  line-height: 1.7;
}

.emergency-contacts {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.emergency-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--danger-red);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.emergency-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-icon {
  font-size: 1.2rem;
}

/* Family Support Section */
.family-support {
  padding: 6rem 0;
  background: var(--darker-navy);
}

.family-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.support-approach {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-approach h3 {
  color: var(--light-text);
  font-size: 1.6rem;
  margin-bottom: 2rem;
  text-align: center;
}

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

.tip-section {
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid;
}

.tip-section.positive {
  border-color: var(--success-green);
  background: rgba(5, 150, 105, 0.1);
}

.tip-section.negative {
  border-color: var(--danger-red);
  background: rgba(239, 68, 68, 0.1);
}

.tip-section h4 {
  color: var(--light-text);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.tip-section ul {
  list-style: none;
  padding: 0;
}

.tip-section li {
  color: var(--light-text);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.tip-section.positive li::before {
  content: '✓';
  color: var(--success-green);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.tip-section.negative li::before {
  content: '✗';
  color: var(--danger-red);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.protection-strategies {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.protection-strategies h3 {
  color: var(--light-text);
  font-size: 1.6rem;
  margin-bottom: 2rem;
  text-align: center;
}

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

.protection-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.protection-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.protection-card h4 {
  color: var(--light-text);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.protection-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.protection-card li {
  color: var(--muted-text);
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
  font-size: 0.9rem;
  line-height: 1.5;
}

.protection-card li::before {
  content: '•';
  color: var(--success-green);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Legal Framework Section */
.legal-framework {
  padding: 6rem 0;
  background: var(--deep-navy);
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}


.player-rights {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.player-rights h3 {
  color: var(--light-text);
  font-size: 1.6rem;
  margin-bottom: 2rem;
  text-align: center;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.right-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.right-item:hover {
  transform: translateY(-3px);
  border-color: var(--success-green);
}

.right-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.right-item h4 {
  color: var(--light-text);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.right-item p {
  color: var(--muted-text);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Final CTA Section */
.rg-final-cta {
  padding: 4rem 0;
  background: var(--gradient-safe);
  position: relative;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: white;
}

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

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

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

.cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

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

.cta-btn.secondary:hover {
  background: white;
  color: var(--success-green);
}

.btn-text {
  font-size: 1.1rem;
}

.commitment-note {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.commitment-note p {
  margin: 0;
  font-size: 1rem;
  opacity: 0.9;
}

/* Footer */
.site-footer {
  background: var(--deep-navy);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border-slate);
}

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

.footer-column h4 {
  color: var(--light-text);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: var(--muted-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--accent-orange);
}

.footer-column p {
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.company-logo {
  margin-bottom: 1rem;
}

.company-logo img {
  height: 60px;
  width: auto;
}

.payment-icons {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
}

.payment-icons img {
  padding: 0.1rem;
  border-radius: 4px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  max-width: 45px;
  height: auto;
}

.payment-icons img:hover {
  opacity: 1;
}

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

.legal-notice {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--warning-amber);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .primary-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 41, 59, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-slate);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .primary-navigation.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .primary-navigation .navigation-menu {
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
  }

  .dropdown-container .submenu-list {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 0;
    transition: all 0.3s ease;
  }

  .menu-checkbox:checked ~ .submenu-list {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    margin-top: 0.5rem;
    overflow-y: auto;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}

@media (max-width: 768px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

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

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

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

  .question-options {
    flex-direction: column;
  }

  .option-label {
    min-width: 100%;
  }

  .signs-categories {
    grid-template-columns: 1fr;
  }

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

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

  .approach-tips {
    grid-template-columns: 1fr;
  }

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

  .rights-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .footer-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .payment-icons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
.button {
        padding: 0.55rem 0.55rem;
        font-size: 0.8rem;
    }
  .rg-hero {
    padding: 6rem 0 3rem;
  }

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

  .title-safe {
    font-size: 1.5rem;
  }

  .tool-card,
  .sign-category,
  .support-item {
    padding: 1.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

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

  .payment-icons img {
    max-width: 35px;
  }
}

@media (max-width: 380px) {
  .header-layout {
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    min-height: 120px;
    padding: 1rem 0;
  }

  .action-buttons {
    order: 3;
    width: 100%;
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .action-buttons .button {
    flex: 1;
    font-size: 0.85rem;
    text-align: center;
    min-width: 0;
    justify-content: center;
    padding: 0.6rem 0.5rem;
  }

  .brand-logo {
    order: 1;
    flex: 1;
  }

  .menu-toggle {
    order: 2;
    margin-left: auto;
  }

  .main-header {
    height: auto;
    min-height: 120px;
  }
}
@media (max-width: 320px) {
  .header-layout {
    min-height: 130px;
    padding: 1.2rem 0;
  }

  .main-header {
    min-height: 130px;
  }

  .action-buttons .button {
    padding: 0.5rem 0.3rem;
    font-size: 0.8rem;
  }
}