/* Import tech font */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

/* General reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  position: relative;
  overflow-x: hidden;
}

.orange-circle {
  position: fixed;
  bottom: -50vh;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, #FF5722 0%, rgba(255, 87, 34, 0.8) 30%, rgba(255, 87, 34, 0.4) 60%, rgba(255, 87, 34, 0) 80%);
  border-radius: 50%;
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header styles */
header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.header-content {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.logo img {
  height: 30px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #666;
}

/* Main content styles */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 50px 0;
}

.policy-content {
  max-width: 800px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.policy-content h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
  text-align: center;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.policy-section {
  margin-bottom: 30px;
}

.policy-section h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.policy-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.intro-text {
  font-size: 18px;
  margin-bottom: 20px;
  color: #444;
}

.consent-section {
  background-color: rgba(255, 87, 34, 0.1);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #FF5722;
}

.consent {
  font-weight: 500;
  font-style: italic;
}

/* Footer styles */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  font-size: 14px;
  color: #fff;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive styles */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 20px;
  }
  
  .header-content {
    flex-direction: column;
    gap: 20px;
  }
  
  nav ul {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .policy-content {
    padding: 30px 20px;
  }
  
  .policy-content h1 {
    font-size: 28px;
  }
  
  .policy-section h2 {
    font-size: 20px;
  }
  
  footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
