:root {
  --primary-color: #3b5998;
  --primary-light: rgba(59, 89, 152, 0.8);
  --primary-dark: rgba(45, 68, 116, 1);
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #111;
  color: #fff;
  scroll-behavior: smooth;
  position: relative;
}

.background-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: linear-gradient(180deg, 
            rgba(59, 89, 152, 0.95) 0%, 
            rgba(59, 89, 152, 0.85) 20%, 
            rgba(59, 89, 152, 0.7) 40%,
            rgba(59, 89, 152, 0.5) 60%,
            rgba(59, 89, 152, 0.2) 80%,
            rgba(17, 17, 17, 1) 100%);
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.decorative-logo {
  position: absolute;
  width: 640px;
  height: 640px;
  opacity: 0.03;
  transform: rotate(15deg);
}

.decorative-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.decorative-logo.top-right {
  top: -150px;
  right: -150px;
}

.decorative-logo.bottom-left {
  bottom: -150px;
  left: -150px;
  transform: rotate(-15deg);
}

.hero {
  text-align: center;
  padding: 60px 20px 160px;
  position: relative;
  overflow: visible;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  width: 120px;
  height: auto;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.logo::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  border-radius: 10px;
  z-index: -1;
}

.logo:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.logo-text {
  font-family: 'Neue Machine', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2.5rem;
  letter-spacing: -1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-text:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

.badge {
  background: #fff;
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.badge span {
  color: #000;
}

h1, h2, h3, h4 {
  font-weight: 700;
}

.cta-buttons {
  margin-top: 30px;
}

.cta-buttons .btn {
  margin: 0 10px 10px;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.btn.ios {
  background: #fff;
  color: #000;
}

.btn.android {
  background: #fff;
  color: #000;
}

.btn.outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.phone-preview {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  height: 450px;
  perspective: 1200px;
  z-index: 5;
  margin-bottom: -0px;
}

.phone-dots {
  display: none;
}

.phone-stack {
  position: relative;
  width: 220px;
  height: 440px;
  z-index: 6;
}

.main-phone {
  position: relative;
  width: 220px;
  height: auto;
  z-index: 7;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
  transform: translateY(-30px);
  transition: all 0.4s ease-out;
  border-radius: 25px;
}

.main-phone::after {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 60%);
  border-radius: 30px;
  z-index: -1;
  opacity: 0.8;
}

.fan-photo {
  position: absolute;
  width: 200px;
  height: auto;
  top: 20px;
  left: 50%;
  transform-origin: bottom center;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.4));
  opacity: 0.95;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 6;
  border-radius: 22px;
}

.fan-photo:nth-child(2) {
  transform: translateX(-50%) rotate(-28deg) translateX(-240px) translateY(60px) scale(1);
  animation: fan-enter 1s ease-out 0.2s both;
}

.fan-photo:nth-child(3) {
  transform: translateX(-50%) rotate(-14deg) translateX(-140px) translateY(40px) scale(0.9);
  animation: fan-enter 1s ease-out 0.3s both;
}

.fan-photo:nth-child(4) {
  transform: translateX(-50%) rotate(14deg) translateX(140px) translateY(40px) scale(0.9);
  animation: fan-enter 1s ease-out 0.4s both;
}

.fan-photo:nth-child(5) {
  transform: translateX(-50%) rotate(28deg) translateX(240px) translateY(60px) scale(1);
  animation: fan-enter 1s ease-out 0.5s both;
}

@keyframes fan-enter {
  0% {
    opacity: 0;
    transform: translateX(-50%) rotate(0deg) translateY(120px);
  }
  100% {
    opacity: 0.95;
  }
}

.phone-stack:hover .main-phone {
  transform: translateY(-40px) scale(1.08);
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.6));
}

.phone-stack:hover .fan-photo {
  opacity: 1;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
}

.plans-section {
  padding: 80px 20px;
  background-color: #1a1a1a;
  text-align: center;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.plan {
  background: #2a2a2a;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.plan:hover {
  transform: translateY(-5px);
}

.plan.premium {
  background: #fff;
  color: #000;
}

.plan.premium h4,
.plan.premium h2,
.plan.premium p,
.plan.premium ul li {
  color: #000;
}

.plan.premium.highlight {
  background: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.plan.premium.highlight::before {
  display: none;
}

.plan h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.plan h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.plan h2 span {
  font-size: 1rem;
  opacity: 0.8;
}

.plan p {
  color: #7f8c8d;
  margin-bottom: 1.5rem;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.plan ul li {
  margin-bottom: 0.5rem;
  color: #fff;
}

.testimonials-section {
  padding: 80px 20px;
  text-align: center;
}

.testimonials {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  padding-left: 10px;
}

.testimonial {
  background-color: #222;
  padding: 20px;
  border-radius: 16px;
  min-width: 200px;
  max-width: 200px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  font-style: italic;
  font-size: 0.95rem;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Features Section */
.features-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #222;
}

.features-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.features-section h3 {
  font-size: 1.2rem;
  color: #7f8c8d;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #2a2a2a;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 1rem;
}

.feature-card h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #7f8c8d;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .plans {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 20px;
  }
  
  .plan {
    padding: 2rem;
    margin-bottom: 1rem;
  }
  
  .plan h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .plan h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .plan h2 span {
    font-size: 1.2rem;
  }
  
  .plan p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .plan ul {
    text-align: left;
    margin: 0;
  }
  
  .plan ul li {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }
  
  .plan.premium.highlight {
    transform: scale(1.05);
  }
  
  .plans-section {
    padding: 60px 15px;
  }
  
  .plans-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .plans-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .plans-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .phone-preview {
    position: relative;
    margin-top: 3rem;
    overflow: visible;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .phone-stack {
    display: flex;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    min-height: 440px;
    flex: 1;
    border-radius: 25px;
  }

  .phone-stack img {
    position: absolute;
    width: 220px;
    height: auto;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    border-radius: 25px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateX(100%);
    z-index: 5;
    visibility: hidden;
  }

  .phone-stack img.active {
    opacity: 1;
    transform: translate(-50%, -50%) translateX(0);
    z-index: 10;
    visibility: visible;
  }

  .phone-stack img.prev {
    transform: translate(-50%, -50%) translateX(-100%);
    opacity: 0;
    z-index: 5;
    visibility: hidden;
  }

  .phone-stack img.next {
    transform: translate(-50%, -50%) translateX(100%);
    opacity: 0;
    z-index: 5;
    visibility: hidden;
  }

  .phone-stack img.slide-in {
    animation: slideIn 0.4s ease-in-out;
  }

  .phone-stack img.slide-out {
    animation: slideOut 0.4s ease-in-out;
  }

  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translate(-50%, -50%) translateX(100%);
      visibility: hidden;
    }
    to {
      opacity: 1;
      transform: translate(-50%, -50%) translateX(0);
      visibility: visible;
    }
  }

  @keyframes slideOut {
    from {
      opacity: 1;
      transform: translate(-50%, -50%) translateX(0);
      visibility: visible;
    }
    to {
      opacity: 0;
      transform: translate(-50%, -50%) translateX(-100%);
      visibility: hidden;
    }
  }

  .phone-stack .slider-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
  }

  .phone-stack .slider-indicator:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .phone-stack .slider-indicator.prev {
    left: 10px;
  }

  .phone-stack .slider-indicator.next {
    right: 10px;
  }

  .phone-stack .slider-indicator:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .phone-stack .slider-indicator {
    display: flex;
  }
  
  .phone-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 0;
    width: 100%;
  }
  
  .phone-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
  }
  
  .phone-dot.active {
    background-color: var(--primary-color);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
  }
  
  .phone-dot:hover {
    background-color: var(--primary-color);
    opacity: 0.8;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 10px;
  }
  
  .feature-card {
    padding: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .feature-card i {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
  
  .feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  
  .feature-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .features-section {
    padding: 60px 15px;
  }
  
  .features-section h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
  
  .features-section h3 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .logo {
    width: 100px;
    margin-bottom: 1.5rem;
  }

  .hero {
    padding: 40px 20px 120px;
  }
  
  .logo-text {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .decorative-logo {
    width: 400px;
    height: 400px;
  }
  
  .decorative-logo.top-right {
    top: -100px;
    right: -100px;
  }
  
  .decorative-logo.bottom-left {
    bottom: -100px;
    left: -100px;
  }
}

@media (max-width: 480px) {
  .plans {
    gap: 1rem;
    padding: 0 5px;
  }
  
  .plan {
    padding: 1.2rem;
  }
  
  .plan h2 {
    font-size: 1.8rem;
  }
  
  .plan h4 {
    font-size: 1rem;
  }
  
  .plan ul li {
    font-size: 0.85rem;
  }
  
  .features-grid {
    gap: 1rem;
    padding: 0 5px;
  }
  
  .feature-card {
    padding: 1.2rem;
  }
  
  .feature-card i {
    font-size: 1.8rem;
  }
  
  .feature-card h4 {
    font-size: 1rem;
  }
  
  .feature-card p {
    font-size: 0.85rem;
  }
  
  .plans-section,
  .features-section {
    padding: 50px 10px;
  }
  
  .plans-section h2,
  .features-section h2 {
    font-size: 1.8rem;
  }
  
  .plans-section h3,
  .features-section h3 {
    font-size: 1rem;
  }
  
  .plans-section p,
  .features-section h3 {
    font-size: 0.85rem;
  }
}

.footer {
  background-color: #1a1a1a;
  padding: 60px 20px 40px;
  margin-top: 60px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-logo {
  height: 50px;
  width: auto;
}

.footer-center {
  display: flex;
  align-items: center;
  gap: 20px;
}

.email-link {
  color: #7f8c8d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: #fff;
}

.instagram-link {
  color: #7f8c8d;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.instagram-link i {
  font-size: 1.2rem;
}

.instagram-link:hover {
  color: #fff;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.download-text {
  color: #7f8c8d;
  font-size: 0.9rem;
}

.store-buttons {
  display: flex;
  gap: 15px;
  margin-top: -5px;
}

.store-button {
  height: 120px;
  width: auto;
  transition: transform 0.3s ease;
}

.store-button:hover {
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #2a2a2a;
}

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

.footer-link {
  color: #7f8c8d;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-link:hover {
  color: #fff;
}

.privacy-link {
  color: #7f8c8d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-link:hover {
  color: #fff;
}

.copyright {
  color: #7f8c8d;
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .footer-center {
    flex-direction: column;
  }
  
  .footer-right {
    align-items: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

.home-header-buttons {
  display: flex;
  gap: 10px;
}

.hero-button-apple,
.hero-button-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 120px;
  text-transform: lowercase;
}

.hero-button-apple {
  background-color: #000;
  color: #fff;
}

.hero-button-google {
  background-color: #fff;
  color: #000;
}

.hero-button-apple:hover,
.hero-button-google:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .home-header-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .store-buttons {
    justify-content: center;
  }
  
  .store-button {
    height: 100px;
  }
}

.plans-section h2 i {
  margin-right: 10px;
  font-size: 1.2em;
  vertical-align: middle;
}

/* Política de Privacidade */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.privacy-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.back-button {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.back-button:hover {
  opacity: 0.8;
}

.privacy-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.privacy-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.privacy-content {
  background: #f8f9fa;
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

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

.privacy-section h2 {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
}

.privacy-section h3 {
  color: #333;
  font-size: 1.2rem;
  margin: 25px 0 15px;
}

.privacy-section p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.privacy-section ul {
  list-style: none;
  padding-left: 0;
}

.privacy-section ul li {
  color: #555;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.privacy-section ul li::before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.contact-info {
  background: rgba(59, 89, 152, 0.05);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #333;
}

.privacy-footer {
  background: #fff;
  padding: 40px 0;
  text-align: center;
  position: relative;
  z-index: 2;
  border-top: 1px solid #e9ecef;
}

.privacy-footer p {
  color: #666;
  margin-bottom: 20px;
}

.back-home {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.back-home:hover {
  color: #333;
}

/* Nova estrutura da política de privacidade */
.privacy-policy {
  background: #f8f9fa;
  min-height: 100vh;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

.privacy-policy > .container {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto;
}

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

.privacy-policy section:last-child {
  margin-bottom: 0;
}

.privacy-policy h1 {
  color: var(--primary-color);
  font-size: 2.2rem;
  margin-bottom: 10px;
  text-align: center;
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 15px;
}

.privacy-policy h2 {
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 15px;
  margin-top: 25px;
  font-weight: 600;
}

.privacy-policy p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 1rem;
}

.privacy-policy ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}

.privacy-policy ul li {
  color: #555;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.privacy-policy ul li::before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.privacy-policy strong {
  color: #333;
  font-weight: 600;
}

.privacy-policy a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-policy a:hover {
  color: #333;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .privacy-header {
    padding: 40px 0 30px;
  }
  
  .privacy-header h1 {
    font-size: 2rem;
  }
  
  .back-button {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 20px;
    justify-content: center;
  }
  
  .privacy-content {
    padding: 40px 0;
  }
  
  .privacy-section {
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .privacy-section h2 {
    font-size: 1.3rem;
  }
  
  .privacy-section h3 {
    font-size: 1.1rem;
  }
  
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .privacy-header h1 {
    font-size: 1.8rem;
  }
  
  .privacy-section {
    padding: 15px;
  }
  
  .privacy-section h2 {
    font-size: 1.2rem;
  }
  
  .privacy-section h3 {
    font-size: 1rem;
  }
  
  .privacy-section p,
  .privacy-section ul li {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 10px;
  }
}
