/* Global Variables */
:root {
  --primary-color: #2563eb;
  --secondary-color: #10b981;
  --accent-color: #f59e0b;
  --text-color: #4b5563;
  --heading-color: #1f2937;
  --light-bg: #f9fafb;
  --dark-bg: #111827;
  --light-card: #ffffff;
  --dark-card: #1e293b;
  --border-radius: 12px;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-bg);
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

ul {
  list-style-position: inside;
  margin-bottom: 1rem;
}

/* Links */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

/* Header Styles */
header {
  background-color: var(--light-card);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  background-color: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--heading-color);
}

.tagline {
  font-size: 0.8rem;
  color: var(--text-color);
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

nav ul li a {
  font-weight: 500;
  color: var(--text-color);
  position: relative;
}

nav ul li a:hover {
  color: var(--primary-color);
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

nav ul li a:hover::after {
  width: 100%;
}

/* Theme Toggle Button */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  padding: 0.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.theme-toggle:hover {
  background-color: var(--light-bg);
}

/* Hero Section */
.inner-page-hero {
  background-color: var(--primary-color);
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.inner-page-hero.small {
  padding: 2rem 0;
}

.hero-content h1 {
  color: white;
  margin-bottom: 1rem;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
}

/* Policy Content */
.policy-content {
  padding: 3rem 0;
}

.policy-container {
  background-color: var(--light-card);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  margin-bottom: 2rem;
}

.last-updated {
  color: var(--text-color);
  opacity: 0.8;
  font-style: italic;
  margin-bottom: 2rem;
}

.policy-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--light-bg);
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-section h2 {
  color: var(--heading-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.policy-section h3 {
  color: var(--heading-color);
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem;
}

.policy-section ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-section ul li {
  margin-bottom: 0.5rem;
}

.contact-block {
  background-color: var(--light-bg);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin: 1rem 0;
}

/* Footer Styles */
footer {
  background-color: var(--light-card);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--light-bg);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-info {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--light-bg);
  border-radius: 50%;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
  color: white;
}

.footer-links h4, .footer-contact h4 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--heading-color);
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item .icon {
  font-size: 1.25rem;
}

.contact-item .details {
  display: flex;
  flex-direction: column;
}

.contact-item .details span {
  font-size: 0.85rem;
  color: var(--text-color);
  opacity: 0.8;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--light-bg);
  color: var(--text-color);
  font-size: 0.9rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--secondary-color);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 99;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #0d9668;
}

/* Dark Theme */
body.dark-theme {
  background-color: var(--dark-bg);
  color: #e2e8f0;
}

body.dark-theme h1, 
body.dark-theme h2, 
body.dark-theme h3, 
body.dark-theme h4, 
body.dark-theme h5, 
body.dark-theme h6 {
  color: #f3f4f6;
}

body.dark-theme header,
body.dark-theme footer,
body.dark-theme .policy-container {
  background-color: var(--dark-card);
  border-color: #2d3748;
}

body.dark-theme .policy-section {
  border-bottom-color: #2d3748;
}

body.dark-theme .logo-text {
  color: #f3f4f6;
}

body.dark-theme .contact-block {
  background-color: #1e293b;
}

body.dark-theme .social-link,
body.dark-theme .theme-toggle:hover {
  background-color: #1e293b;
}

body.dark-theme .contact-item .details span {
  color: #cbd5e1;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

.animate__animated {
  animation-duration: 1s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
  }
  
  nav ul {
    gap: 1rem;
  }
  
  .inner-page-hero {
    padding: 2rem 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  .policy-container {
    padding: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-info {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .logo {
    width: 35px;
    height: 35px;
  }
  
  nav ul {
    gap: 0.75rem;
  }
  
  .policy-container {
    padding: 1rem;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}