/**************************
  ANIMATED PAGE TITLE
***************************/
.page-main {
  min-height: 100vh;
  padding: 100px 6% 40px 6%;
  margin: 0;
  background: #f5f5f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.page-hero {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 1100px;
  margin-bottom: 40px;
}

.page-title {
  font-family: 'Russo One', sans-serif !important;
  font-size: 2.5rem !important;
  font-weight: 400 !important;
  color: #f89939 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
  margin: 0 !important;
  padding-left: 16px;
  border-left: 4px solid #64c6c2;
  line-height: 1.2;
  
  /* Animation */
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInFade 1s ease-out 0.5s forwards;
}

@keyframes slideInFade {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/**************************
  RESPONSIVE - TABLET
***************************/
@media screen and (max-width: 1023px) {
  .page-main {
    padding: 80px 5% 30px 5%;
  }
  
  .page-title {
    font-size: 2rem !important;
  }
}

/**************************
  RESPONSIVE - MOBILE
***************************/
@media (max-width: 600px) {
  .page-main {
    padding: 70px 4% 20px 4%;
  }
  
  .page-hero {
    margin-bottom: 25px;
  }
  
  .page-title {
    font-size: 1.75rem !important;
    padding-left: 12px;
    border-left-width: 3px;
  }
}

/**************************
  RESPONSIVE - SMALL MOBILE
***************************/
@media screen and (max-width: 480px) {
  .page-main {
    padding: 60px 3% 15px 3%;
  }
  
  .page-hero {
    margin-bottom: 20px;
  }
  
  .page-title {
    font-size: 1.5rem !important;
    padding-left: 10px;
    border-left-width: 3px;
    letter-spacing: 0.1em !important;
  }
}
/**************************
  PRIVACY POLICY PAGE
***************************/

/* Privacy Hero Section */
.privacy-hero {
  margin-top: 0 !important;
  padding: 100px 6%;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  text-align: center;
  border-bottom: 2px solid #e0e0e0;
}

.privacy-container {
  max-width: 1200px;
  margin: 0 auto;
}

.privacy-hero h1 {
  font-family: 'Russo One', sans-serif;
  font-size: 4rem;
  color: #393939;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 400;
}

.privacy-hero p {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  color: #666;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Privacy Content Section */
.privacy-content {
  padding: 80px 6%;
  background: #fff;
}

/* Meta Info */
.policy-meta {
  background: #f8f9fa;
  padding: 20px 30px;
  border-radius: 8px;
  border-left: 4px solid #64c6c2;
  margin-bottom: 50px;
}

.policy-meta p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #666;
  margin: 0;
}

/* Policy Sections */
.policy-section {
  margin-bottom: 50px;
}

.policy-section h2 {
  font-family: 'Russo One', sans-serif;
  font-size: 2rem;
  color: #f89939;
  margin-bottom: 25px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.3;
  padding-bottom: 15px;
  border-bottom: 3px solid #f89939;
}

.policy-section h3 {
  font-family: 'Russo One', sans-serif;
  font-size: 1.4rem;
  color: #64c6c2;
  margin: 30px 0 15px 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 400;
}

.policy-section p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.85;
  color: #393939;
  margin-bottom: 20px;
  letter-spacing: 0.005em;
}

.policy-section strong {
  color: #f89939;
  font-weight: 600;
}

.policy-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.policy-section li {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.85;
  color: #393939;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  letter-spacing: 0.005em;
}

.policy-section li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #64c6c2;
  font-weight: bold;
}

.policy-section a {
  color: #64c6c2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.policy-section a:hover {
  color: #f89939;
  text-decoration: underline;
}

/* Contact Info Box */
.contact-info-policy {
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f7f6 100%);
  padding: 40px;
  border-radius: 12px;
  border-left: 5px solid #5fbe79;
  margin: 30px 0;
}

.contact-info-policy p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #393939;
  margin: 0 0 15px 0;
  line-height: 1.6;
}

.contact-info-policy p:last-child {
  margin-bottom: 0;
}

.contact-info-policy strong {
  color: #f89939;
  font-weight: 600;
}

.contact-info-policy a {
  color: #64c6c2;
  text-decoration: none;
  font-weight: 500;
}

.contact-info-policy a:hover {
  text-decoration: underline;
}

/**************************
  RESPONSIVE - TABLET
***************************/
@media screen and (max-width: 1023px) {
  .privacy-hero {
    padding: 70px 5%;
  }

  .privacy-hero h1 {
    font-size: 2.8rem;
  }

  .privacy-hero p {
    font-size: 1.1rem;
  }

  .privacy-content {
    padding: 60px 5%;
  }

  .policy-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .policy-section h3 {
    font-size: 1.2rem;
  }

  .policy-section p,
  .policy-section li {
    font-size: 1.05rem;
  }

  .contact-info-policy {
    padding: 30px;
  }
}

/**************************
  RESPONSIVE - MOBILE
***************************/
@media (max-width: 600px) {
  .privacy-hero {
    padding: 60px 5%;
  }

  .privacy-hero h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .privacy-hero p {
    font-size: 1rem;
  }

  .privacy-content {
    padding: 50px 5%;
  }

  .policy-meta {
    padding: 15px 20px;
  }

  .policy-section {
    margin-bottom: 40px;
  }

  .policy-section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-bottom: 12px;
  }

  .policy-section h3 {
    font-size: 1.1rem;
    margin: 25px 0 12px 0;
  }

  .policy-section p,
  .policy-section li {
    font-size: 1rem;
    line-height: 1.7;
  }

  .policy-section li {
    padding-left: 25px;
    margin-bottom: 12px;
  }

  .contact-info-policy {
    padding: 25px;
    margin: 25px 0;
  }

  .contact-info-policy p {
    font-size: 1rem;
    margin-bottom: 12px;
  }
}

