* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  overflow-x: hidden;
  color: #1f2937;
}

html {
  scroll-behavior: smooth;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #5568d3, #643a8c);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #4b5563;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #667eea;
}

.nav-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 140px 30px 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 width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M50 0 L100 50 L50 100 L0 50 Z" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 100px 100px;
  animation: slide 20s linear infinite;
}

@keyframes slide {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(100px) translateY(100px);
  }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 64px;
  color: white;
  margin-bottom: 24px;
  font-weight: 900;
  line-height: 1.1;
  animation: fadeInUp 0.8s ease-out;
}

.hero p {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.app-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  padding: 16px 32px;
  border-radius: 15px;
  text-decoration: none;
  color: #1f2937;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.app-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.app-icon {
  width: 30px;
  height: 30px;
}

/* Stats Section */
.stats {
  background: white;
  padding: 80px 30px;
}

.stats-container {
  /* max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  text-align: center; */
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.stat-item .icon {
  width: 40px;
  height: 40px;
  color: #667eea;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-item svg {
  width: 32px;
  height: 32px;
  stroke: #667eea;
  transition: transform 0.2s ease, stroke 0.2s ease;
}

.stat-item:hover svg {
  transform: scale(1.15);
  stroke: #764ba2;
}

.stat-item a {
  color: #333;
  text-decoration: none;
}

.stat-item a:hover {
  color: #764ba2;
}

.stat-item h3 {
  font-size: 56px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  margin-bottom: 12px;
}

.stat-item p {
  font-size: 18px;
  color: #6b7280;
  font-weight: 600;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #1f2937;
}

.section-header p {
  font-size: 20px;
  color: #6b7280;
  line-height: 1.6;
}

/* Features Section */
.features {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 100px 30px;
}

.features .section-header h2,
.features .section-header p {
  color: white;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1f2937;
}

.feature-card p {
  color: #6b7280;
  line-height: 1.7;
  font-size: 16px;
}

/* How It Works */
.how-it-works {
  padding: 100px 30px;
  background: white;
}

.steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  color: white;
  margin: 0 auto 24px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.step h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1f2937;
}

.step p {
  color: #6b7280;
  line-height: 1.7;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 100px 30px;
}

.testimonials .section-header h2,
.testimonials .section-header p {
  color: white;
}

.testimonial-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.author-info h4 {
  font-size: 16px;
  color: #1f2937;
  margin-bottom: 4px;
}

.author-info p {
  font-size: 14px;
  color: #6b7280;
}

/* CTA Section */
.cta-section {
  background: white;
  padding: 100px 30px;
  text-align: center;
}

.cta-section h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 24px;
  color: #1f2937;
}

.cta-section p {
  font-size: 20px;
  color: #6b7280;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background: #1f2937;
  color: white;
  padding: 60px 30px 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #667eea;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid #374151;
  text-align: center;
  color: #9ca3af;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: #374151;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: background 0.3s;
}

.social-links a:hover {
  background: #667eea;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 18px;
  }

  .nav-links {
    display: none;
  }

  .section-header h2 {
    font-size: 36px;
  }
}

/* ============================= */
/* Contact Section Styles        */
/* ============================= */
.contact-section {
  background: #f9fafb;
  padding: 100px 30px;
  text-align: center;
}

.contact-section .section-header {
  max-width: 700px;
  margin: 0 auto 60px;
}

.contact-section h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.contact-section p {
  color: #6b7280;
  font-size: 18px;
  line-height: 1.6;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
}

.contact-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.contact-form .form-group {
  text-align: left;
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  transition: border 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
}

.submit-btn {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 40px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    padding: 30px 20px;
  }

  .contact-section h2 {
    font-size: 32px;
  }

  .contact-section p {
    font-size: 16px;
  }

  .submit-btn {
    width: 100%;
  }
}
.contact-container {
  position: relative;
  background: white;
  overflow: hidden;
}

.contact-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #667eea, #764ba2, #ec4899);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  animation: gradient-border 6s linear infinite;
}

@keyframes gradient-border {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* ============================= */
/* Pricing Page Styles           */
/* ============================= */
.pricing {
  padding: 140px 30px 100px;
  background: linear-gradient(135deg, #f9fafb 0%, #f9fafb 100%);
  min-height: 100vh;
}

.pricing .section-header {
  max-width: 700px;
  margin: 0 auto 80px;
  text-align: center;
}

.pricing .section-header h2 {
  font-size: 48px;
  font-weight: 900;
  color: #1f2937;
  margin-bottom: 20px;
}

.pricing .section-header p {
  font-size: 20px;
  color: #6b7280;
  line-height: 1.6;
}

.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding: 0 20px;
}

.pricing-card {
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
  border-color: #667eea;
}

.pricing-card:nth-child(2) {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.pricing-card:nth-child(2):hover {
  transform: scale(1.08) translateY(-10px);
  box-shadow: 0 25px 70px rgba(102, 126, 234, 0.4);
}

.pricing-card:nth-child(2) h3,
.pricing-card:nth-child(2) p,
.pricing-card:nth-child(2) h4 {
  color: white;
}

.pricing-card:nth-child(2) ul li {
  color: rgba(255, 255, 255, 0.95);
}

.pricing-card h3 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card:nth-child(2) h3 {
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card > p {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.6;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.pricing-card ul li {
  padding: 12px 0;
  color: #4b5563;
  font-size: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.pricing-card:nth-child(2) ul li {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

.pricing-card h4 {
  font-size: 40px;
  font-weight: 900;
  color: #1f2937;
  margin-top: 20px;
}

.pricing-card:nth-child(2)::before {
  content: "MOST POPULAR";
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.25);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
  .content-page {
    padding: 120px 20px 60px;
  }

  .content-page .section-header h2 {
    font-size: 36px;
  }

  .content-page .section-header p {
    font-size: 18px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pricing-card:nth-child(2) {
    transform: scale(1);
  }

  .pricing-card:nth-child(2):hover {
    transform: translateY(-10px);
  }

  .pricing-card h3 {
    font-size: 28px;
  }

  .pricing-card h4 {
    font-size: 32px;
  }
}

.content-page {
  padding: 140px 30px 80px;
  background: #f9fafb;
  min-height: 100vh;
}

.content-page .section-header {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.content-page .section-header h2 {
  font-size: 48px;
  font-weight: 900;
  color: #1f2937;
  margin-bottom: 16px;
}

.content-page .section-header p {
  font-size: 20px;
  color: #6b7280;
  line-height: 1.6;
}

.content-body {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  line-height: 1.8;
}

.content-body > p:first-of-type {
  font-size: 18px;
  color: #4b5563;
  margin-bottom: 48px;
  padding: 24px;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.05) 0%,
    rgba(118, 75, 162, 0.05) 100%
  );
  border-left: 4px solid #667eea;
  border-radius: 8px;
}

.content-body h3 {
  font-size: 28px;
  font-weight: 800;
  color: #1f2937;
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #667eea;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-body h3:first-of-type {
  margin-top: 0;
}

.content-body h4 {
  font-size: 20px;
  font-weight: 700;
  color: #374151;
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-body p {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 20px;
  line-height: 1.8;
}

.content-body strong {
  color: #1f2937;
  font-weight: 700;
}

.content-body a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
}

.content-body a:hover {
  color: #764ba2;
  border-bottom-color: #764ba2;
}

.content-body > div {
  margin-top: 48px;
  padding: 32px;
  background: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.05) 0%,
    rgba(236, 72, 153, 0.1) 100%
  );
  border-radius: 16px;
  border-left: 4px solid #ec4899;
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.1);
}

.content-body > div h4 {
  margin-top: 0;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.content-body > div p {
  margin-bottom: 0;
  font-size: 16px;
  color: #4b5563;
}

/* Responsive Design */
@media (max-width: 768px) {
  .content-page {
    padding: 120px 20px 60px;
  }

  .content-page .section-header h2 {
    font-size: 36px;
  }

  .content-page .section-header p {
    font-size: 18px;
  }

  .content-body {
    padding: 40px 24px;
  }

  .content-body h3 {
    font-size: 24px;
  }

  .content-body h4 {
    font-size: 18px;
  }

  .content-body > div {
    padding: 24px;
  }
}

/* Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal {
  background: white;
  border-radius: 16px;
  max-width: 800px;
  width: 90%;
  max-height: 85vh;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
}

.modal-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.modal-body {
  padding: 2rem;
  overflow-y: auto;
  max-height: calc(85vh - 120px);
}

.modal-body h3 {
  color: #1f2937;
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  font-weight: 700;
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body h4 {
  color: #374151;
  font-size: 1.125rem;
  margin: 1.5rem 0 0.75rem;
  font-weight: 600;
}

.modal-body p {
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.modal-body a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
}

.modal-body a:hover {
  color: #764ba2;
  text-decoration: underline;
}

.modal-body strong {
  color: #1f2937;
  font-weight: 600;
}

.modal-body-highlight {
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 12px;
  border-left: 4px solid #667eea;
}

.modal-body-highlight h4 {
  margin-top: 0;
  color: #667eea;
  font-size: 1.25rem;
}

.modal-body-highlight p {
  margin-bottom: 0;
}

/* Scrollbar Styles */
.modal-body::-webkit-scrollbar {
  width: 8px;
}

.modal-body::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #5568d3, #643a8c);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .modal {
    width: 95%;
    max-height: 90vh;
  }

  .modal-header {
    padding: 1.5rem;
  }

  .modal-body {
    padding: 1.5rem;
    max-height: calc(90vh - 100px);
  }
}

.terms-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 100px 20px 60px;
  text-align: center;
}
.terms-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
.terms-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
}
.terms-content {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}
.terms-section {
  margin-bottom: 40px;
}
.terms-section h2 {
  font-size: 28px;
  color: #667eea;
  margin-bottom: 20px;
}
.terms-section h3 {
  font-size: 22px;
  color: #333;
  margin: 25px 0 15px;
}
.terms-section h4 {
  font-size: 18px;
  color: #555;
  margin: 20px 0 10px;
}
.terms-section p,
.terms-section li {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
}
.terms-section ul {
  margin-left: 20px;
}
.highlight-box {
  background: #f8f9fa;
  border-left: 4px solid #667eea;
  padding: 20px;
  margin: 25px 0;
  border-radius: 8px;
}
.highlight-box h4 {
  color: #667eea;
  margin-top: 0;
}
.back-home {
  display: inline-block;
  margin: 40px 0;
  padding: 15px 30px;
  background: #667eea;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
}
.back-home:hover {
  background: #5568d3;
}
.last-updated {
  font-style: italic;
  color: #888;
  margin-bottom: 30px;
}
