* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #333;
}
/* Navbar Styles */

/* Content Section Styles */
.content-section {
  padding: 100px 0;
  min-height: 100vh;
}

#aboutapp {
  background-color: #f8f9fa;
}

#powerful {
  background-color: #e9ecef;
}

/* Container for content sections */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Body padding to account for fixed navbar */
body {
  padding-top: 80px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.privacy-container {
  height: 10;
  margin: 0 auto;
  background: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  min-height: 100vh;
}

.privacy-header {
  margin-top: -11px;
  background: linear-gradient(135deg, #efffef 0%, #d5e8ff 100%);
  color: black;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 30px 30px 0 0;
}

.privacy-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.last-updated {
  font-size: 1rem;
  opacity: 0.9;
}

.privacy-content {
  padding: 2rem;
  margin: 0 20px;
}

.policy-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e9ecef;
}

.policy-section:last-of-type {
  border-bottom: none;
}

.policy-section h2 {
  font-size: 1.8rem;
  font-family: "Poppins", sans-serif;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}

.policy-section h3 {
  font-size: 1.4rem;
  margin: 1.5rem 0 1rem 0;
}

.policy-section h4 {
  font-size: 1.2rem;
  margin: 1.2rem 0 0.8rem 0;
}

.policy-section h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.policy-section p {
  margin-bottom: 1rem;
  font-size: 1rem;
  text-align: justify;
}

.definition-list {
  list-style: none;
  padding-left: 0;
}

.definition-list li {
  margin-bottom: 0.8rem;
  padding-left: 1rem;
}

.definition-list strong {
  color: #2c3e50;
}

ul:not(.definition-list) {
  padding-left: 2rem;
  margin-bottom: 1rem;
}

ul:not(.definition-list) li {
  margin-bottom: 0.5rem;
}

.cookie-types {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.cookie-type {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
}

.cookie-type h5 {
  margin-bottom: 1rem;
}

.cookie-type p {
  margin-bottom: 0.5rem;
}

.contact-section {
  background: #e8f4fc;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.privacy-footer {
  background: white;
  color: black;
  text-align: center;
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 0 0 30px 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-header {
    padding: 2rem 1rem;
  }

  .privacy-header h1 {
    font-size: 2rem;
  }

  .privacy-content {
    padding: 1rem;
  }

  .policy-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .cookie-types {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .privacy-header h1 {
    font-size: 1.6rem;
  }

  .policy-section h2 {
    font-size: 1.5rem;
  }

  .policy-section h3 {
    font-size: 1.3rem;
  }
}
.contact-form input,
.contact-form textarea {
  outline: none; /* Remove the default focus outline */
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom: 1px solid #222fb9; /* Optional: change bottom border color on focus */
}
