@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --selection-color: #3685b6;
  --primary-color: #2b65f5;
  --linear-gradient: linear-gradient(45deg, #162ba2, #060c2c);
}

::selection{
  background-color: var(--primary-color);
  color: white;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: black;
  color: #333;
  line-height: 1.8;
}

.privacy-section {
  padding: 60px 20px;
}

.container {
  max-width: 900px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 50px 60px;
  margin: 0 auto;
  border: 1px solid #e0e0e0;
}

.title {
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: center;
  color: #1a1a1a;
}

.intro {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
  font-style: italic;
}

h2 {
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 12px;
  color: #2c2c2c;
  border-bottom: 1px solid #ddd;
  padding-bottom: 6px;
  font-weight: 200;
}

ul {
  margin-left: 25px;
  margin-bottom: 20px;
  color: #444;
}

ul li {
  margin-bottom: 10px;
}

p {
  margin-bottom: 15px;
  color: #444;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .title {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .container {
    padding: 30px 20px;
  }
}
