body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  color: #333;
}

h1 {
  color: #222;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

th,
td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

th {
  background-color: #f5f5f5;
}

.manage-btn {
  background: none;
  border: 1px solid #6c5ce7;
  color: black;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.manage-btn:hover {
  background: linear-gradient(to right, black, #6c5ce7);
  color: white;
  box-shadow: 0 2px 8px black;
  transform: translateY(-2px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
}

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

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.logo {
  height: 80%;
  width: 80%;
  max-height: 300px; 
  object-fit: contain;
}

.company-name {
  font-size: 20px;
  font-weight: 700;
  color: #222;
}

.privacy-header {
  text-align: center;
  margin: 30px 0;
}

.privacy-header h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #222;
}

.privacy-header .subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 5px;
}

.privacy-header .update-info {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.verified-by {
  background-color: #f0f8ff;
  border-left: 4px solid #0066cc;
  padding: 15px;
  margin: 20px 0;
  font-size: 14px;
}

.privacy-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

h2 {
  font-size: 22px;
  margin: 30px 0 15px;
  color: #222;
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
}

h3 {
  font-size: 18px;
  margin: 25px 0 10px;
  color: #333;
}

p {
  margin-bottom: 15px;
  font-size: 15px;
}

ul {
  margin-bottom: 20px;
  padding-left: 25px;
}

li {
  margin-bottom: 8px;
  font-size: 15px;
}

.check-mark {
  color: #28a745;
  font-weight: bold;
}

.contact-info {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 5px;
  margin: 25px 0;
}

.contact-info p {
  margin: 5px 0;
  display: flex;
  align-items: center;
}

.icon {
  margin-right: 10px;
  font-size: 18px;
}

.verification-section {
  background-color: #f0f8ff;
  padding: 20px;
  border-radius: 5px;
  margin-top: 30px;
  font-size: 14px;
}

.verification-item {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.verification-check {
  color: #28a745;
  margin-right: 10px;
  font-weight: bold;
}

.third-party-notices {
  background-color: #fff8f0;
  padding: 20px;
  border-radius: 5px;
  margin: 30px 0;
  border-left: 4px solid #ffa500;
}

.third-party-notices h3 {
  color: #d35400;
  border-bottom: none;
}

footer {
  padding: 30px 0;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }

  .logo-container {
    margin-bottom: 15px;
    justify-content: center;
  }

  .privacy-content {
    padding: 25px;
  }
}
