/* Brahmanas.in Landing Page Styles */
:root {
  --primary-color: #FF6B35;
  --secondary-color: #004E89;
  --accent-color: #FFD23F;
  --text-dark: #1A1A1A;
  --text-light: #666666;
  --white: #FFFFFF;
  --light-bg: #F8F9FA;
  --border-color: #E0E0E0;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background: #E5522A;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary-color);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 50px;
  height: 50px;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

.nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.header-buttons {
  display: flex;
  gap: 15px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: var(--white);
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.05"/><circle cx="10" cy="90" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
}

.trust-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.trust-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services {
  background: var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.service-description {
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.6;
}

.service-btn {
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.service-btn:hover {
  background: #E5522A;
  transform: translateY(-2px);
}

/* How It Works Section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-icon {
  font-size: 3rem;
  margin: 30px 0 20px;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.step-description {
  color: var(--text-light);
  line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
  background: var(--light-bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.benefit {
  text-align: center;
  padding: 30px 20px;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.benefit-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.benefit-description {
  color: var(--text-light);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.footer-description {
  color: #CCCCCC;
  line-height: 1.6;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.social-link {
  color: #CCCCCC;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover,
.social-link:hover {
  color: var(--primary-color);
}

.contact-info p {
  color: #CCCCCC;
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  color: #CCCCCC;
}

/* Loading Spinner */
.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#loading_indicator {
  text-align: center;
  padding: 100px 20px;
  color: var(--text-dark);
}

/* Featured Brahmans Section */
.featured-brahmans {
  padding: 80px 0;
  background: var(--white);
}

.brahmans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.brahman-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  text-align: center;
}

.brahman-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.brahman-image {
  margin-bottom: 20px;
}

.placeholder-image {
  width: 80px;
  height: 80px;
  font-size: 4rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  border-radius: 50%;
}

.brahman-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.brahman-credentials {
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.brahman-specializations {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.brahman-location {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.brahman-rating {
  margin-bottom: 20px;
}

.stars {
  font-size: 1rem;
  margin-right: 8px;
}

.rating-text {
  font-size: 0.9rem;
  color: var(--text-light);
}

.brahman-btn {
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.brahman-btn:hover {
  background: #E5522A;
  transform: translateY(-2px);
}

.view-all-container {
  text-align: center;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: var(--light-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.testimonial-content {
  margin-bottom: 25px;
}

.quote-icon {
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-rating {
  text-align: center;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.author-avatar {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.author-location {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 3px;
}

.service-type {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 500;
}

/* Community Stats Section */
.community-stats {
  padding: 80px 0;
  background: var(--secondary-color);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.community-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
}

/* Legal Documents Styles */
.main-content {
  padding-top: 100px;
  min-height: calc(100vh - 200px);
  background: var(--light-bg);
}

.legal-document {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.legal-document h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 10px;
}

.last-updated {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

/* Card-based sections for better visual separation */
.policy-section,
.terms-section,
.faq-section {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.policy-section h2,
.terms-section h2,
.faq-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-color);
}

.policy-section h3,
.terms-section h3,
.faq-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 20px 0 10px 0;
}

.policy-section h4,
.terms-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 15px 0 8px 0;
}

.policy-section p,
.terms-section p {
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 15px;
}

.policy-section ul,
.terms-section ul {
  color: var(--text-dark);
  line-height: 1.6;
  margin: 15px 0;
  padding-left: 20px;
}

.policy-section li,
.terms-section li {
  margin-bottom: 8px;
}

.policy-section a,
.terms-section a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.policy-section a:hover,
.terms-section a:hover {
  text-decoration: underline;
}

/* FAQ Expandable Items */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
  background: var(--light-bg);
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1rem;
}

.faq-question:hover {
  background: #f0f0f0;
}

.faq-question.active {
  background: var(--primary-color);
  color: var(--white);
}

.faq-toggle {
  font-size: 1.2rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
  padding: 20px;
  max-height: 1000px;
}

.faq-answer p {
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 10px;
}

.faq-answer ul {
  color: var(--text-dark);
  line-height: 1.6;
  margin: 10px 0;
  padding-left: 20px;
}

.faq-answer li {
  margin-bottom: 5px;
}

.faq-answer strong {
  color: var(--secondary-color);
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav.nav-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-hover);
    border-radius: 0 0 16px 16px;
    z-index: 999;
  }

  .nav.nav-open .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
  }

  .nav.nav-open .nav-link:last-child {
    border-bottom: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .trust-indicators {
    gap: 30px;
  }

  .header-buttons {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 12px;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 20px;
  }
}

/* Enhanced Component Animations */
.service-card,
.brahman-card,
.testimonial-card,
.faq-item,
.policy-section,
.terms-section {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover,
.brahman-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
}

/* Improved Button Hover Effects */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Enhanced Loading States */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.loading-shimmer {
  animation: pulse 1.5s ease-in-out infinite;
}

/* Beautiful Gradient Backgrounds */
.gradient-bg-1 {
  background: linear-gradient(135deg, #FF6B35 0%, #004E89 100%);
}

.gradient-bg-2 {
  background: linear-gradient(135deg, #FFD23F 0%, #FF6B35 100%);
}

.gradient-bg-3 {
  background: linear-gradient(135deg, #004E89 0%, #FFD23F 100%);
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #E5522A;
}

/* Focus Indicators for Accessibility */
.btn:focus,
.nav-link:focus,
.faq-question:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Enhanced Typography */
.hero-title,
.section-title,
.legal-document h1 {
  color: var(--text-dark);
  /* Removed gradient text styling for better readability */
}

/* Improved Card Spacing and Layout */
.policy-section:last-child,
.terms-section:last-child,
.faq-section:last-child {
  margin-bottom: 40px;
}

/* Beautiful Form Elements */
.legal-document input[type="email"],
.legal-document input[type="text"],
.legal-document textarea {
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 16px;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  background: var(--white);
}

.legal-document input[type="email"]:focus,
.legal-document input[type="text"]:focus,
.legal-document textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  outline: none;
}

/* Enhanced Page Transitions */
.main-content {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Improved Visual Hierarchy */
.legal-document {
  position: relative;
}

.legal-document::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
  margin-bottom: 20px;
}

/* Enhanced Status Indicators */
.status-success {
  color: #10B981;
  background: rgba(16, 185, 129, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
}

.status-warning {
  color: #F59E0B;
  background: rgba(245, 158, 11, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
}

.status-error {
  color: #EF4444;
  background: rgba(239, 68, 68, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
}

/* Beautiful Tooltips */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: var(--text-dark);
  color: var(--white);
  text-align: center;
  border-radius: 8px;
  padding: 8px 12px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -100px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 14px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* Enhanced Print Styles */
@media print {
  .header,
  .footer,
  .btn,
  .mobile-menu-btn {
    display: none !important;
  }

  .main-content {
    padding-top: 0 !important;
  }

  .legal-document {
    max-width: none !important;
    padding: 0 !important;
  }

  .policy-section,
  .terms-section,
  .faq-section {
    break-inside: avoid;
    margin-bottom: 20px !important;
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
}
