/* General Styles */
:root {
  --primary-color: #ff4500; /* Orange-Red */
  --secondary-color: #ffd700; /* Gold */
  --dark-bg: #1a1a2e;
  --medium-bg: #22223b;
  --light-text: #e0e0e0;
  --dark-text: #333;
  --button-hover: #e63900;
  --card-bg: #2d2d4f;
  --border-color: #4a4a6b;
  --shadow-color: rgba(0, 0, 0, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--light-text);
  background-color: var(--dark-bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

h1,
h2,
h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-align: center;
}

h1 {
  font-size: 3em;
}

h2 {
  font-size: 2.5em;
  margin-top: 40px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}

h3 {
  font-size: 1.8em;
}

p {
  margin-bottom: 40px;
}

button,
a.try-now-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover a.try-now-btn:hover {
  background-color: var(--button-hover);
  transform: translateY(-2px);
}

/* Header */
header {
  background-color: var(--medium-bg);
  padding: 15px 0;
  box-shadow: 0 2px 10px var(--shadow-color);
  position: static;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
  border-radius: 5px;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--light-text);
  font-weight: bold;
  font-size: 1.1em;
  padding-bottom: 5px;
  position: relative;
}

nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease-in-out;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

.register-btn {
  padding: 10px 20px;
}

/* Hero Section */
.hero-section {
  background: url("../images/hero-bg.jpg") no-repeat center center/cover;
  text-align: center;
  padding: 150px 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 4.5em;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px var(--shadow-color);
  color: var(--secondary-color);
}

.hero-section h2 {
  font-size: 2.2em;
  margin-bottom: 40px;
  font-weight: normal;
  color: var(--light-text);
  border-bottom: none;
}

.hero-section .cta-button {
  padding: 15px 40px;
  font-size: 1.5em;
  border-radius: 8px;
}

/* What We Offer Section */
.what-we-offer-section {
  padding: 80px 0;
  background-color: var(--dark-bg);
  text-align: center;
}

.what-we-offer-section h2 {
  margin-bottom: 50px;
}

.game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.game-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px var(--shadow-color);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.game-card h3 {
  color: var(--secondary-color);
  font-size: 1.6em;
  margin-bottom: 10px;
  text-align: left;
}

.game-card p {
  color: var(--light-text);
  font-size: 0.95em;
  line-height: 1.5;
  margin-bottom: 20px;
}

.game-card .try-now-btn {
  width: 100%;
  padding: 10px;
  font-size: 1em;
}

/* Comparison Section */
.comparison-section {
  padding: 80px 0;
  background-color: var(--medium-bg);
  text-align: center;
}

.comparison-section h2 {
  margin-bottom: 50px;
}

.comparison-section table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  box-shadow: 0 4px 15px var(--shadow-color);
  border-radius: 10px;
  overflow: hidden;
}

.comparison-section th,
.comparison-section td {
  padding: 15px;
  border: 1px solid var(--border-color);
  text-align: left;
}

.comparison-section th {
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  font-size: 1.1em;
}

.comparison-section tr:nth-child(even) {
  background-color: var(--card-bg);
}

.comparison-section tr:nth-child(odd) {
  background-color: var(--dark-bg);
}

.comparison-section td:first-child {
  font-weight: bold;
  color: var(--secondary-color);
}

/* Demo Game Section */
.demo-game-section {
  padding: 80px 0;
  background-color: var(--dark-bg);
  text-align: center;
}

.demo-game-section h2 {
  margin-bottom: 50px;
}

.game-emulator {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  max-width: 600px;
  margin: 0 auto 30px;
  box-shadow: 0 8px 20px var(--shadow-color);
  border: 3px solid var(--primary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.game-emulator .screen {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 180px;
  background-color: #000;
  border: 5px solid #555;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}

.game-emulator .reel {
  width: 30%;
  height: 100%;
  background-color: #222;
  border: 1px solid #444;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 3em;
  color: white;
  overflow: hidden;
}

/* Spin animation for reels */
@keyframes spin {
  0% {
    transform: translateY(-300%);
  }
  100% {
    transform: translateY(0);
  }
}

.game-emulator .reel.spinning {
  animation: spin 1s linear infinite; /* Will be controlled by JS */
}

.game-emulator .controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.game-emulator .balance {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--secondary-color);
}

.game-emulator label {
  font-size: 1.1em;
}

.game-emulator select {
  padding: 8px 12px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  background-color: var(--dark-bg);
  color: var(--light-text);
  font-size: 1em;
}

.game-emulator button {
  padding: 10px 20px;
  font-size: 1.2em;
}

.disclaimer-text {
  color: var(--light-text);
  font-size: 0.9em;
  margin-top: 20px;
  opacity: 0.8;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: var(--medium-bg);
  text-align: center;
}

.testimonials-section h2 {
  margin-bottom: 50px;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.testimonial-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px var(--shadow-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid var(--primary-color);
}

.testimonial-card h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-bottom: 5px;
}

.testimonial-card .stars {
  color: var(--secondary-color);
  font-size: 1.4em;
  margin-bottom: 15px;
}

.testimonial-card p {
  color: var(--light-text);
  font-size: 0.95em;
  line-height: 1.5;
  font-style: italic;
}

.add-review-btn {
  padding: 12px 25px;
}

/* Modal Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 2000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.7); /* Black w/ opacity */
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: var(--medium-bg);
  margin: auto;
  padding: 30px;
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 5px 15px var(--shadow-color);
  position: relative;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-content h3 {
  color: var(--secondary-color);
  margin-bottom: 25px;
  text-align: center;
}

.modal-content form label {
  display: block;
  margin-bottom: 8px;
  color: var(--light-text);
  font-weight: bold;
}

.modal-content form input[type="text"],
.modal-content form input[type="number"],
.modal-content form textarea {
  width: calc(100% - 20px);
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  background-color: var(--dark-bg);
  color: var(--light-text);
  font-size: 1em;
}

.modal-content form textarea {
  resize: vertical;
  min-height: 100px;
}

.modal-content form button[type="submit"] {
  width: 100%;
  padding: 15px;
  font-size: 1.2em;
}

.close-button {
  color: var(--light-text);
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-button:hover,
.close-button:focus {
  color: var(--primary-color);
  text-decoration: none;
  cursor: pointer;
}

/* Registration Section */
.registration-section {
  padding: 80px 0;
  background-color: var(--dark-bg);
  text-align: center;
}

.registration-section h2 {
  margin-bottom: 50px;
}

.registration-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.registration-steps .step {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px var(--shadow-color);
  text-align: center;
}

.registration-steps .step img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 3px solid var(--secondary-color);
}

.registration-steps .step h3 {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-bottom: 10px;
}

.registration-steps .step p {
  color: var(--light-text);
  font-size: 0.95em;
}

.bonus-info {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px var(--shadow-color);
  margin-bottom: 60px;
  text-align: left;
}

.bonus-info h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  text-align: center;
}

.bonus-info p {
  color: var(--light-text);
  font-size: 1.1em;
  line-height: 1.7;
}

.bonus-info strong {
  color: var(--primary-color);
}

.registration-form {
  background-color: var(--card-bg);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px var(--shadow-color);
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.registration-form h3 {
  color: var(--secondary-color);
  margin-bottom: 30px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--light-text);
  font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="date"],
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  background-color: var(--dark-bg);
  color: var(--light-text);
  font-size: 1em;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1); /* Makes the calendar icon white */
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 5px rgba(255, 69, 0, 0.5);
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  transform: scale(1.3);
}

.checkbox-group label {
  margin-bottom: 0;
  cursor: pointer;
  font-size: 0.95em;
}

.checkbox-group label a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.registration-form .cta-button {
  width: 100%;
  padding: 15px;
  font-size: 1.3em;
}

.data-safety-info {
  font-size: 0.85em;
  color: var(--light-text);
  margin-top: 25px;
  text-align: center;
  opacity: 0.9;
}

.error-message {
  color: #ff6347; /* Tomato red */
  font-size: 0.85em;
  margin-top: 5px;
  display: block;
}

/* Upcoming Games Section */
.upcoming-games-section {
  padding: 80px 0;
  background-color: var(--medium-bg);
  text-align: center;
}

.upcoming-games-section h2 {
  margin-bottom: 50px;
}

.upcoming-game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.upcoming-game-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px var(--shadow-color);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.upcoming-game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.upcoming-game-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.upcoming-game-card h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-bottom: 10px;
  text-align: left;
}

.upcoming-game-card p {
  color: var(--light-text);
  font-size: 0.9em;
  line-height: 1.5;
  margin-bottom: 10px;
}

.newsletter-signup {
  background-color: var(--card-bg);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px var(--shadow-color);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-signup h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.newsletter-signup p {
  color: var(--light-text);
  font-size: 1.1em;
  margin-bottom: 25px;
}

.newsletter-signup form {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.newsletter-signup input[type="email"] {
  flex: 1;
  min-width: 250px;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  background-color: var(--dark-bg);
  color: var(--light-text);
  font-size: 1em;
}

.newsletter-signup button {
  padding: 12px 30px;
  font-size: 1.1em;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background-color: var(--dark-bg);
  text-align: center;
}

.gallery-section h2 {
  margin-bottom: 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

/* Gallery Modal */
#gallery-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

#gallery-modal .modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 900px;
  border: none;
  background: none;
  box-shadow: none;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

#gallery-modal .close-button {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

#gallery-modal .close-button:hover,
#gallery-modal .close-button:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Disclaimer Section */
.disclaimer-section {
  padding: 80px 0;
  background-color: var(--medium-bg);
  text-align: center;
}

.disclaimer-section h2 {
  margin-bottom: 40px;
  color: #ff6347; /* Slightly more urgent color */
}

.disclaimer-section ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 800px;
  text-align: left;
}

.disclaimer-section ul li {
  background-color: var(--card-bg);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px var(--shadow-color);
  display: flex;
  align-items: center;
  font-size: 1.1em;
  color: var(--light-text);
}

.disclaimer-section ul li img {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  object-fit: contain;
}

.disclaimer-section ul li strong {
  color: var(--secondary-color);
  margin-right: 5px;
}

.disclaimer-section p {
  font-size: 1em;
  color: var(--light-text);
  margin-top: 30px;
}

.disclaimer-section p a {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  padding: 50px 0 20px;
  color: var(--light-text);
  text-align: center;
  border-top: 1px solid var(--border-color);
}

footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  text-align: left;
}

.footer-col {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 15px;
  border-radius: 5px;
}

footer h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.4em;
  text-align: left;
}

footer p,
footer ul li {
  font-size: 0.95em;
  line-height: 1.6;
  color: var(--light-text);
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a {
  color: var(--light-text);
}

footer ul li a:hover {
  color: var(--secondary-color);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icons img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  font-size: 0.9em;
  text-align: center;
  color: var(--light-text);
}

.age-restriction {
  font-weight: bold;
  color: var(--secondary-color);
  margin-left: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section h1 {
    font-size: 3.5em;
  }

  .hero-section h2 {
    font-size: 1.8em;
  }

  nav ul li {
    margin-left: 20px;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li {
    margin: 0 15px 10px;
  }

  .register-btn {
    margin-top: 20px;
  }

  .hero-section {
    padding: 100px 20px;
  }

  .hero-section h1 {
    font-size: 2.8em;
  }

  .hero-section h2 {
    font-size: 1.5em;
  }

  h2 {
    font-size: 2em;
  }

  .game-cards,
  .testimonial-cards,
  .upcoming-game-cards,
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .registration-steps {
    flex-direction: column;
    align-items: center;
  }

  .registration-steps .step {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .newsletter-signup form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-signup input[type="email"],
  .newsletter-signup button {
    width: 100%;
  }

  .comparison-section table,
  .comparison-section thead,
  .comparison-section tbody,
  .comparison-section th,
  .comparison-section td,
  .comparison-section tr {
    display: block;
  }

  .comparison-section thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .comparison-section tr {
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
  }

  .comparison-section td {
    border: none;
    position: relative;
    padding-left: 50%;
    text-align: right;
    font-size: 0.95em;
  }

  .comparison-section td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 45%;
    padding-left: 15px;
    font-weight: bold;
    text-align: left;
    color: var(--secondary-color);
  }
}

@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 2.2em;
  }

  .hero-section h2 {
    font-size: 1.2em;
  }

  .hero-section .cta-button {
    font-size: 1.2em;
    padding: 12px 30px;
  }

  h2 {
    font-size: 1.8em;
  }

  .game-emulator .controls {
    flex-direction: column;
    gap: 15px;
  }

  .game-emulator .balance,
  .game-emulator label,
  .game-emulator select,
  .game-emulator button {
    width: 100%;
    text-align: center;
  }

  .testimonial-card,
  .game-card,
  .upcoming-game-card {
    padding: 20px;
  }

  .footer-col {
    min-width: 100%;
    text-align: center;
  }

  footer h3 {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* Policy Section */
.policy-section {
  padding: 80px 0;
  background-color: var(--dark-bg);
  text-align: center;
}

.policy-section h1 {
  font-size: 3.5em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-align: center;
}

.last-updated {
  font-size: 1em;
  color: var(--light-text);
  margin-bottom: 40px;
  text-align: 0.8;
  text-align: center;
}

.policy-content {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--card-bg);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.policy-content h2 {
  font-size: 2em;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
}

.policy-content p {
  margin-bottom: 15px;
  color: var(--light-text);
  font-size: 1em;
  line-height: 1.7;
}

.policy-content ul {
  margin-bottom: 20px;
  padding-left: 25px;
  list-style: disc;
}

.policy-content li {
  margin-bottom: 10px;
  color: var(--light-text);
  font-size: 1em;
}

.policy-content li strong {
  color: var(--secondary-color);
}

.policy-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

.policy-content a:hover {
  color: var(--button-hover);
}

@media (max-width: 768px) {
  .policy-section h1 {
    font-size: 2.5em;
  }

  .policy-content {
    padding: 20px;
  }

  .policy-content h2 {
    font-size: 1.8em;
  }
}

@media (max-width: 480px) {
  .policy-section h1 {
    font-size: 2em;
  }

  .policy-content h2 {
    font-size: 1.6em;
  }

  .policy-content p,
  .policy-content li {
    font-size: 0.95em;
  }
}

/* Strategies Section */
.strategies-section {
  padding: 80px 0;
  background-color: var(--dark-bg);
  text-align: center;
}

.strategies-section h2 {
  margin-bottom: 50px;
}

.strategy-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.strategy-tip {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px #333;
  text-align: left;
}

.strategy-tip h3 {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-bottom: 10px;
  text-align: left;
}

.strategy-tip p {
  color: var(--light-text);
  font-size: 0.95em;
  line-height: 1.7;
}

/* Community Section */
.community-section {
  padding: 80px 0;
  background-color: var(--medium-bg);
  text-align: center;
}

.community-section h2 {
  margin-bottom: 50px;
}

.community-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.community-feature {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px var(--shadow-color);
  text-align: left;
}

.community-feature h3 {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-bottom: 10px;
  text-align: left;
}

.community-feature p {
  color: var(--light-text);
  font-size: 0.95em;
  line-height: 1.7;
}

/* Footer Contact Info */
.footer-col.contact-info {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--light-text);
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  margin-bottom: 10px;
  color: var(--light-text);
  font-size: 0.95em;
}

.contact-info a {
  color: var(--secondary-color);
}

.contact-info a:hover {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .strategy-tips,
  .community-features {
    grid-template-columns: 1fr;
  }

  .footer-col.contact-info {
    text-align: center;
  }
}
