:root {
  --pink: #ff7aa2;
  --sun: #ffc857;
  --sky: #60c2ff;
  --mint: #7ef6b5;
  --accent: #ff8a00;
  --accent-dark: #e67300;
  --text: #1f2937;
  --text-light: #6b7280;
  --light: #f9fafb;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 8px 30px rgba(18, 38, 63, 0.08);
  --shadow-hover: 0 18px 40px rgba(18, 38, 63, 0.12);
}

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

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(180deg, #fffbf6 0%, #ffffff 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  padding-bottom: 40px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Breadcrumb */
.breadcrumb {
  padding: 25px 0 15px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  margin: 0 8px;
  color: var(--text-light);
}

.breadcrumb .current {
  color: var(--accent);
  font-weight: 600;
}

/* Header */
.privacy-header {
  text-align: center;
  padding: 60px 0 40px;
  position: relative;
}

.hero-title {
  font-family: "Baloo 2", cursive;
  font-size: 3.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.hero-title span {
  color: var(--accent);
  position: relative;
}

.hero-title span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(255, 138, 0, 0.2);
  z-index: -1;
  border-radius: 4px;
}

.hero-subtitle {
  color: var(--text-light);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Decorative Elements */
.privacy-element {
  position: absolute;
  z-index: 0;
  animation: floaty 6s ease-in-out infinite;
}

.elem-1 {
  top: 10%;
  left: 5%;
  width: 60px;
  height: 60px;
  background: var(--pink);
  border-radius: 20px;
  transform: rotate(25deg);
}

.elem-2 {
  top: 20%;
  right: 10%;
  width: 80px;
  height: 80px;
  background: var(--sun);
  border-radius: 50%;
}

.elem-3 {
  bottom: 20%;
  left: 8%;
  width: 70px;
  height: 70px;
  background: var(--sky);
  border-radius: 15px;
  transform: rotate(-15deg);
  animation-delay: 0.5s;
}

.elem-4 {
  bottom: 15%;
  right: 7%;
  width: 50px;
  height: 50px;
  background: var(--mint);
  border-radius: 50%;
  animation-delay: 1s;
}

/* Privacy Content */
.privacy-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 50px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

.section {
  margin-bottom: 40px;
  position: relative;
  padding-left: 30px;
  padding-top: 15px;
}

.section-title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.section-title i {
  background: rgba(255, 138, 0, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 1.8rem;
  color: var(--accent);
  transition: all 0.3s;
}

.section-title:hover i {
  transform: scale(1.1);
  background: var(--accent);
  color: white;
}

.section-title h2 {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Baloo 2", cursive;
}

.section-content {
  padding-left: 80px;
}

.section-content p {
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--text-light);
}

.info-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 25px 0;
}

.info-bubble {
  background: var(--light);
  border-radius: var(--radius-sm);
  padding: 20px;
  flex: 1;
  min-width: 200px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px dashed rgba(255, 122, 162, 0.3);
}

.info-bubble:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.bubble-title {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.bubble-title i {
  color: var(--accent);
}

.bubble-content {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Privacy Shield */
.privacy-shield {
  background: linear-gradient(
    135deg,
    rgba(126, 246, 181, 0.1),
    rgba(96, 194, 255, 0.1)
  );
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin: 50px 0;
  position: relative;
  overflow: hidden;
  border: 3px dashed var(--sky);
}

.shield-icon {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.shield-title {
  font-family: "Baloo 2", cursive;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--text);
}

.shield-text {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Contact Section */
.contact-section {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius);
  color: white;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.contact-title {
  font-family: "Baloo 2", cursive;
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.contact-text {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 2;
  line-height: 1.7;
}

.contact-btn {
  display: inline-block;
  background: var(--white);
  color: var(--accent);
  padding: 16px 45px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.contact-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.contact-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.contact-btn:hover i {
  transform: translateX(5px);
}

/* Animations */
@keyframes floaty {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .privacy-content {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.3rem;
  }

  .section-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-title i {
    margin-bottom: 15px;
  }

  .section-content {
    padding-left: 0;
  }

  .privacy-element {
    display: none;
  }

  .privacy-content {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .shield-title {
    font-size: 1.8rem;
  }

  .contact-title {
    font-size: 2rem;
  }
}
