:root {
  --primary-color: #ffa826;
  --secondary-color: #7d9dc5;
  --text-color: #f2f2f2;
  --footer-bg-color: rgba(0, 0, 0, 0.2);
}

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

body {
  min-height: 100vh;
  color: var(--text-color);
  background: linear-gradient(
      to bottom,
      var(--primary-color),
      var(--secondary-color)
    )
    no-repeat;
  background-attachment: fixed;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  text-align: center;
}

h1 {
  font-size: 1.6rem;
  margin-top: 2rem;
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

main > div {
  display: grid;
  grid-template-rows: 1fr 1fr;
}

main img {
  max-width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

main section {
  text-align: center;
  font-size: 20px;
}

footer {
  background-color: var(--footer-bg-color);
  padding: 20px;
  text-align: center;
}

footer nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

footer nav a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s;
}

footer nav a:hover {
  opacity: 0.7;
}

footer p {
  margin-top: 1rem;
  font-size: 14px;
}

/* Privacy Policy Styles */
.privacy-content {
  max-width: 800px;
  width: 100%;
  padding: 2rem;
  text-align: left;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.privacy-content h1 {
  text-align: center;
}

.privacy-content h2 {
  font-size: 1.3rem;
}

.privacy-content h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: normal;
}

.privacy-header {
  text-align: center;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.privacy-header p {
  margin: 0.3rem 0;
}

.privacy-header a {
  color: #f2f2f2;
  text-decoration: underline;
}

.privacy-section {
  line-height: 1.6;
  text-align: left;
}
.privacy-section p,
li {
  font-size: 14px;
}

.privacy-section p {
  margin-top: 0.4rem;
}

.privacy-section ul,
.privacy-section ol {
  margin: 0.5rem 0 1rem 2rem;
}

.privacy-section li {
  margin-bottom: 0.5rem;
}

.privacy-section ul.no-list {
  list-style: none;
  margin-left: 1rem;
}

.privacy-section.summary {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 1.5rem;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.privacy-section.summary p {
  font-size: 1.1rem;
}

.privacy-section.summary ul.no-list li {
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}
