.tabs {
  display: flex;
  border-bottom: 1px solid #ccc;
  margin-bottom: 24px;
  background: #f8f9fa;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.tab {
  padding: 14px 32px;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
  font-size: 18px;
  font-family: "Segoe UI", "Junge", Arial, sans-serif;
  font-weight: 500;
  color: #333;
  transition: background 0.2s, color 0.2s;
}

.tab.active {
  border-bottom: 3px solid #007bff;
  font-weight: 700;
  color: #007bff;
  background: #fff;
}

.tab:not(.active):hover {
  background: #e9ecef;
  color: #0056b3;
}

.tab-content {
  display: none;
  padding: 32px 40px 32px 40px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  font-family: "Inter", "Segoe UI", "Roboto", Arial, sans-serif;
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.7;
}

.tab-content.active {
  display: block;
}

.tab-content h2 {
  font-size: 3rem;
  font-family: "Junge", serif;
  font-weight: 300;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
  width: 70%;
}

.tab-content h3 {
  font-size: 1.4rem;
  font-family: "Junge", serif;
  font-weight: 300;
  color: #fff;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.tab-content p, .tab-content ul, .tab-content ol {
  color: #e0e0e0;
  font-size: 1rem;
  font-family: "Inter", "Segoe UI", "Roboto", Arial, sans-serif;
  font-weight: 400;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.tab-content ul, .tab-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  text-align: left;
  width: auto;
}

.tab-content ul li, .tab-content ol li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-family: "Inter", "Segoe UI", "Roboto", Arial, sans-serif;
  font-weight: 400;
  text-align: left;
}

@media (max-width: 600px) {
  .tab-content {
    padding: 18px 8px;
    font-size: 15px;
  }
  .tab {
    padding: 10px 10px;
    font-size: 15px;
  }
  .tab-content h2 {
    font-size: 1.3rem;
  }
  .tab-content h3 {
    font-size: 1.1rem;
  }
}
.glass-navbar {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 70vw;
  max-width: 900px;
  min-width: 320px;
  padding: 1rem 0.8rem 1rem 1.1rem;
  background: rgba(155, 155, 155, 0.18);
  box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 1000;
}

.navbar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-logo img {
  height: 30px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-links a {
  text-decoration: none;
  color: #e9e9e9;
  font-weight: 500;
  font-size: 1rem;
  font-family: "Inter", "Segoe UI", "Roboto", Arial, sans-serif;
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: #fff;
}

.contact-btn {
  background: rgb(0, 0, 0);
  border: 1px solid #000;
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  font-family: "Inter", "Segoe UI", "Roboto", Arial, sans-serif;
  transition: background 0.2s, color 0.2s;
}

.contact-btn:hover {
  background: #000;
  color: #fff;
}

@media (max-width: 600px) {
  .glass-navbar {
    width: 95vw;
    padding: 0.5rem 1rem;
  }
  .navbar-links {
    gap: 1rem;
  }
  .navbar-logo img {
    height: 32px;
  }
  .navbar-links a, .contact-btn {
    font-size: 0.95rem;
    padding: 0.3rem 0.7rem;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #111;
  color: #f5f5f5;
  font-family: "Inter", "Segoe UI", "Roboto", Arial, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 1rem;
}

a {
  font-size: 1rem;
  font-family: "Inter", "Segoe UI", "Roboto", Arial, sans-serif;
}

button {
  font-size: 1rem;
  font-family: "Inter", "Segoe UI", "Roboto", Arial, sans-serif;
}

.tab-container {
  margin-top: 120px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.tab {
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  font-family: "Inter", "Segoe UI", "Roboto", Arial, sans-serif;
  font-weight: 500;
  color: #e9e9e9;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  outline: none;
  cursor: pointer;
  transition: color 0.2s, border-bottom 0.2s;
}

.tab.active {
  color: #fff;
  border-bottom: 2.5px solid #fff;
  background: none;
}

.tab:not(.active):hover {
  color: #fff;
  border-bottom: 2px solid #888;
  background: none;
}

.content-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.08);
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
}

.tab-content {
  color: #e0e0e0;
  font-size: 1rem;
  font-family: "Inter", "Segoe UI", "Roboto", Arial, sans-serif;
  line-height: 1.7;
}

.tab-content h2 {
  font-size: 2.2rem;
  font-family: "Junge", serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.tab-content h3 {
  font-size: 1.3rem;
  font-family: "Junge", serif;
  font-weight: 600;
  color: #fff;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.tab-content p, .tab-content ul, .tab-content ol {
  color: #e0e0e0;
  font-size: 1rem;
  font-family: "Inter", "Segoe UI", "Roboto", Arial, sans-serif;
}

.tab-content ul, .tab-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.tab-content ul li, .tab-content ol li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .content-container {
    padding: 1.2rem 0.5rem;
  }
  .tab-content h2 {
    font-size: 1.3rem;
  }
  .tab-content h3 {
    font-size: 1.1rem;
  }
}/*# sourceMappingURL=privacy.css.map */