
/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  background: #f8f8f8;
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Logo */
.logo img {
  width: 130px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1);
}

/* Navigation */
.nav-links ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-links ul li a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  color: #00581b;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links ul li a:hover {
  color: #1ea840;
}

.nav-links ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #1ea840;
  transition: width 0.3s ease;
}

.nav-links ul li a:hover::after {
  width: 100%;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1000;
}

.hamburger div {
  width: 30px;
  height: 3px;
  background: #00581b;
  margin: 5px;
  transition: all 0.3s ease;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 70%;
  max-width: 300px;
  background: #00581b;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: right 0.5s ease;
  box-shadow: -5px 0 15px rgba(0,0,0,0.2);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.mobile-nav ul li {
  margin: 25px 0;
}

.mobile-nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-nav ul li a:hover {
  color: #b3e6c5;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 800;
  display: none;
}

.overlay.active {
  display: block;
}

/* Privacy Policy Content */
.privacy-container {
  max-width: 1000px;
  margin: 120px auto 60px;
  padding: 0 30px;
}

.privacy-header {
  text-align: center;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.privacy-header.animated {
  opacity: 1;
  transform: translateY(0);
}

.privacy-header h1 {
  font-size: 2.8rem;
  color: #00581b;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.privacy-header h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #1ea840;
}

.privacy-header p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.privacy-content {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  padding: 50px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease 0.3s;
}

.privacy-content.animated {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  color: #00581b;
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1ea840;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.section-title.animated {
  opacity: 1;
  transform: translateX(0);
}

.privacy-content p {
  margin-bottom: 25px;
  color: #444;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.privacy-content p.animated {
  opacity: 1;
  transform: translateY(0);
}

.privacy-content ul {
  margin: 20px 0;
  padding-left: 30px;
}

.privacy-content li {
  margin-bottom: 15px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease;
}

.privacy-content li.animated {
  opacity: 1;
  transform: translateX(0);
}

.highlight {
  color: #00581b;
  font-weight: 600;
  background: rgba(0, 88, 27, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.contact-box {
  background: #f0faf3;
  border-left: 4px solid #1ea840;
  padding: 25px;
  margin: 30px 0;
  border-radius: 0 5px 5px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.contact-box.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Footer styles */  
.footer {  
  background-color: #1ea840;  
  color: #fff;  
  padding: 60px 40px 30px;  
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: auto;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}  

.footer.animated {
  opacity: 1;
  transform: translateY(0);
}

.footer-column {  
  padding: 10px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}  

.footer-column.animated {
  opacity: 1;
  transform: translateY(0);
}

.footer-column h3 {  
  margin-bottom: 20px;  
  font-size: 1.3rem;  
  position: relative;
  padding-bottom: 10px;
}  

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: white;
}

.footer-column a {  
  font-size: 1rem;  
  color: #fff;  
  text-decoration: none;  
  display: block;  
  margin-bottom: 12px;  
  transition: all 0.3s ease;
}  

.footer-column a:hover {  
  text-decoration: underline;  
  transform: translateX(5px);
}  

.footer-column p {
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.social-icons {  
  margin-top: 20px;  
  display: flex;
  gap: 15px;
}  

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.social-icons a.animated {
  opacity: 1;
  transform: translateY(0);
}

.social-icons a:hover {
  background: #fff;
  color: #1ea840;
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  color: #ffffff;
  background-color: #00581b;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.footer-bottom.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-links ul {
    gap: 25px;
  }
  
  .nav-links ul li a {
    font-size: 16px;
  }
  
  .privacy-container {
    margin: 100px auto 40px;
  }
  
  .privacy-content {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
  }
  
  .nav-links {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
  
  .privacy-container {
    margin: 90px auto 30px;
  }
  
  .privacy-header h1 {
    font-size: 2.2rem;
  }
  
  .privacy-content {
    padding: 30px 20px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .footer {
    padding: 40px 20px;
  }
  
  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .privacy-header h1 {
    font-size: 1.8rem;
  }
  
  .privacy-header p {
    font-size: 0.95rem;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-column {
    text-align: center;
  }
  
  .footer-column a {
    justify-content: center;
  }
  
  .mobile-nav {
    width: 85%;
  }
  
  .privacy-container {
    padding: 0 15px;
  }
}

/* Back to Home Button */
.back-button {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  padding: 12px 25px;
  background: #1ea840;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.back-button.animated {
  opacity: 1;
  transform: translateY(0);
}

.back-button:hover {
  background: #00581b;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.back-button i {
  margin-right: 8px;
}

/* Animation for social icons with staggered delay */
.social-icons a:nth-child(1) { transition-delay: 0.1s; }
.social-icons a:nth-child(2) { transition-delay: 0.2s; }
.social-icons a:nth-child(3) { transition-delay: 0.3s; }
.social-icons a:nth-child(4) { transition-delay: 0.4s; }

/* Animation for footer columns with staggered delay */
.footer-column:nth-child(1) { transition-delay: 0.1s; }
.footer-column:nth-child(2) { transition-delay: 0.2s; }
.footer-column:nth-child(3) { transition-delay: 0.3s; }
.footer-column:nth-child(4) { transition-delay: 0.4s; }

/* Animation for list items with staggered delay */
.privacy-content li:nth-child(1) { transition-delay: 0.1s; }
.privacy-content li:nth-child(2) { transition-delay: 0.2s; }
.privacy-content li:nth-child(3) { transition-delay: 0.3s; }
.privacy-content li:nth-child(4) { transition-delay: 0.4s; }
.privacy-content li:nth-child(5) { transition-delay: 0.5s; }

/* Animation for paragraphs with staggered delay */
.privacy-content p:nth-child(1) { transition-delay: 0.1s; }
.privacy-content p:nth-child(2) { transition-delay: 0.2s; }
.privacy-content p:nth-child(3) { transition-delay: 0.3s; }
.privacy-content p:nth-child(4) { transition-delay: 0.4s; }
.privacy-content p:nth-child(5) { transition-delay: 0.5s; }

/* Animation for section titles with staggered delay */
.section-title:nth-child(1) { transition-delay: 0.1s; }
.section-title:nth-child(2) { transition-delay: 0.2s; }
.section-title:nth-child(3) { transition-delay: 0.3s; }
.section-title:nth-child(4) { transition-delay: 0.4s; }
.section-title:nth-child(5) { transition-delay: 0.5s; }
.section-title:nth-child(6) { transition-delay: 0.6s; }
.section-title:nth-child(7) { transition-delay: 0.7s; }
