body {
  background-color: #0d0d1a;
  color: #e6e6e6;
  line-height: 1.7;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: linear-gradient(180deg, #1a1a2e, #0d0d1a);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 60px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

nav ul li a {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s, border-bottom 0.3s;
  padding-bottom: 0.3rem;
}

nav ul li a:hover,
nav ul li a.active {
  color: #ffcc00;
  border-bottom: 2px solid #ffcc00;
}

.btn-register {
  background: linear-gradient(45deg, #28a745, #218838);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-register:hover {
  background: linear-gradient(45deg, #218838, #1a6b2e);
  transform: translateY(-2px);
}

section {
  padding: 5rem 0;
}

h1,
h2 {
  color: #ffcc00;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-align: center;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

ul {
  list-style: disc;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

ul li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

a {
  color: #ffcc00;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.hero-bg {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 2rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.hero-bg:hover {
  transform: scale(1.02);
}

#privacy-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #0d0d1a 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#privacy-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/privacy-bg.jpg") center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}

#privacy-hero .container {
  position: relative;
  z-index: 1;
}

#data-collection,
#data-usage,
#data-sharing,
#data-security,
#user-rights,
#disclaimer {
  background: #1e1e30;
  border-radius: 12px;
  padding: 3rem;
  margin: 0 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

footer {
  background: linear-gradient(180deg, #0d0d1a, #1a1a2e);
  color: #f0f0f0;
  padding: 3rem 0;
  text-align: center;
}

footer .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  height: 50px;
  margin-bottom: 1rem;
}

footer nav ul {
  justify-content: center;
  gap: 1.5rem;
}

footer .social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

footer .social-links img {
  width: 35px;
  height: 35px;
  transition: transform 0.3s ease;
}

footer .social-links img:hover {
  transform: scale(1.1);
}

footer p {
  font-size: 0.9rem;
  color: #cccccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-bg {
    max-height: 350px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  header .container {
    flex-direction: column;
    gap: 1.5rem;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-bg {
    max-height: 250px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  section {
    padding: 3rem 0;
  }

  #data-collection,
  #data-usage,
  #data-sharing,
  #data-security,
  #user-rights,
  #disclaimer {
    padding: 2rem;
    margin: 0 10px;
  }
}
