/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Coming Soon Banner */
.coming-soon-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.banner-icon {
  font-size: 1.2rem;
}

.banner-text {
  font-size: 0.95rem;
  text-align: center;
}

.banner-cta {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.banner-cta:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* Navigation */
.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 60px;
  width: 100%;
  z-index: 1000;
}

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

.logo {
  height: 40px;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #00b894;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  margin-top: 130px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.85;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
  padding: 16px 32px;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.cta-primary {
  background: #00b894;
  color: white;
  box-shadow: 0 4px 15px rgba(0,184,148,0.3);
}

.cta-primary:hover {
  background: #00a085;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,184,148,0.4);
}

.cta-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.cta-secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* Features Section */
.features {
  padding: 80px 0;
  background: #f8f9fa;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2d3748;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.feature-card p {
  color: #4a5568;
  line-height: 1.6;
}

/* Use Cases Section */
.use-cases {
  padding: 80px 0;
}

.use-cases h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2d3748;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.use-case {
  padding: 2rem;
  border-left: 4px solid #00b894;
  background: #f7fafc;
  border-radius: 8px;
}

.use-case h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.use-case p {
  color: #4a5568;
}

/* API Section */
.api-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.api-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2d3748;
}

.api-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.api-description h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.api-description p {
  color: #4a5568;
  margin-bottom: 1.5rem;
}

.api-description ul {
  list-style: none;
  padding: 0;
}

.api-description li {
  color: #4a5568;
  margin-bottom: 0.5rem;
}

.api-example {
  background: #1a202c;
  border-radius: 12px;
  padding: 1.5rem;
}

.api-example h4 {
  color: #e2e8f0;
  margin-bottom: 1rem;
}

.api-example pre {
  margin: 0;
  overflow-x: auto;
}

.api-example code {
  color: #68d391;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
}

.pricing h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.pricing-subtitle {
  text-align: center;
  color: #4a5568;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 3rem;
}

.pricing-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-card.featured {
  border-color: #00b894;
  box-shadow: 0 8px 25px rgba(0,184,148,0.15);
}

.popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #00b894;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.price {
  margin-bottom: 2rem;
}

.currency {
  font-size: 1.5rem;
  color: #4a5568;
  vertical-align: top;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: #2d3748;
}

.period {
  font-size: 1.2rem;
  color: #4a5568;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  color: #4a5568;
  margin-bottom: 0.75rem;
  padding-left: 0;
}

.pricing-cta {
  width: 100%;
  background: #00b894;
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 1rem;
}

.pricing-cta:hover {
  background: #00a085;
  transform: translateY(-2px);
}

.pricing-cta.disabled,
.pricing-cta:disabled {
  background: #a0aec0;
  color: #718096;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  border: 2px solid #e2e8f0;
}

.pricing-cta.disabled:hover,
.pricing-cta:disabled:hover {
  background: #a0aec0;
  transform: none;
  box-shadow: none;
}

.trial-note {
  color: #4a5568;
  font-size: 0.9rem;
  font-style: italic;
}

.enterprise-contact {
  text-align: center;
  background: #f7fafc;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #00b894;
}

.enterprise-contact a {
  color: #00b894;
  text-decoration: none;
  font-weight: 600;
}

.enterprise-contact a:hover {
  text-decoration: underline;
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background: #f8f9fa;
}

.how-it-works h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2d3748;
}

.how-it-works-content {
  max-width: 800px;
  margin: 0 auto;
}

.how-description p {
  font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 2rem;
  text-align: center;
}

.how-description ul {
  list-style: none;
  padding: 0;
}

.how-description li {
  background: white;
  margin-bottom: 1rem;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-left: 4px solid #00b894;
}

.how-description li strong {
  color: #2d3748;
  display: block;
  margin-bottom: 0.5rem;
}

/* Performance Disclaimer Section */
.disclaimer-section {
  padding: 80px 0;
  background: #fff8dc;
  border-top: 4px solid #f39c12;
  border-bottom: 4px solid #f39c12;
}

.disclaimer-content h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #d35400;
}

.disclaimer-text {
  max-width: 1000px;
  margin: 0 auto;
}

.disclaimer-text > p {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #8b4513;
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid #f39c12;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.1);
}

.performance-examples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.perf-example {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid #ddd;
}

.perf-example.best-case {
  border-color: #27ae60;
  border-left: 6px solid #27ae60;
}

.perf-example.worst-case {
  border-color: #e74c3c;
  border-left: 6px solid #e74c3c;
}

.perf-example h4 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.perf-example.best-case h4 {
  color: #27ae60;
}

.perf-example.worst-case h4 {
  color: #e74c3c;
}

.perf-example ul {
  list-style: none;
  padding: 0;
}

.perf-example li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  color: #4a5568;
  line-height: 1.5;
}

.perf-example.best-case li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
}

.perf-example.worst-case li:before {
  content: "⚠";
  position: absolute;
  left: 0;
  color: #e74c3c;
  font-weight: bold;
}

.perf-example li strong {
  color: #2d3748;
}

.trial-encouragement {
  background: #e8f5e8;
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid #27ae60;
  text-align: center;
  margin-top: 2rem;
}

.trial-encouragement p {
  font-size: 1.1rem;
  color: #2d3748;
  margin: 0;
}

.trial-encouragement a {
  color: #27ae60;
  font-weight: 600;
  text-decoration: none;
}

.trial-encouragement a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #2d3748;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-paddle {
  border-top: 1px solid #4a5568;
  padding-top: 2rem;
  text-align: center;
}

.footer-paddle p {
  color: #a0aec0;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-menu {
    display: none;
  }
  
  .api-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .features-grid,
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-brand {
    align-items: center;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .feature-card,
  .use-case {
    padding: 1.5rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .performance-examples {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .disclaimer-content h2 {
    font-size: 1.8rem;
  }
  
  .disclaimer-text > p {
    font-size: 1rem;
    padding: 1rem;
  }
  
  .perf-example {
    padding: 1.5rem;
  }
  
  .trial-encouragement {
    padding: 1.5rem;
  }
  
  .trial-encouragement p {
    font-size: 1rem;
  }
  
  .hero {
    margin-top: 130px;
  }
  
  .banner-content {
    gap: 0.5rem;
    padding: 0 15px;
  }
  
  .banner-text {
    font-size: 0.85rem;
  }
  
  .banner-cta {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 60px;
    margin-top: 120px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .features-grid,
  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cta-primary,
  .cta-secondary {
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .disclaimer-content h2 {
    font-size: 1.5rem;
  }
  
  .disclaimer-text > p {
    font-size: 0.9rem;
    padding: 1rem;
  }
  
  .perf-example {
    padding: 1rem;
  }
  
  .trial-encouragement {
    padding: 1rem;
  }
  
  .banner-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .banner-text {
    font-size: 0.8rem;
  }
}

/* Cookie Consent Popup */
.cookie-consent {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-consent.show {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.cookie-content {
  background: white;
  border-radius: 12px;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin: 20px;
  position: relative;
}

.cookie-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.cookie-header h3 {
  margin: 0;
  color: #2d3748;
  font-size: 1.3rem;
}

.cookie-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #718096;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.cookie-close:hover {
  background: #f7fafc;
  color: #2d3748;
}

.cookie-body {
  padding: 1.5rem 2rem;
}

.cookie-body > p {
  margin-bottom: 1.5rem;
  color: #4a5568;
  line-height: 1.6;
}

.cookie-categories {
  margin-bottom: 1.5rem;
}

.cookie-category {
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1rem;
}

.cookie-category-header {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.cookie-category-header input[type="checkbox"] {
  margin-top: 0.2rem;
  transform: scale(1.2);
}

.cookie-category-header input[type="checkbox"]:disabled {
  opacity: 0.6;
}

.cookie-category-header label {
  flex: 1;
  cursor: pointer;
  color: #2d3748;
  font-size: 1rem;
}

.required {
  color: #e53e3e;
  font-size: 0.8rem;
  font-weight: normal;
}

.cookie-description {
  color: #718096;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  margin-left: 1.5rem;
}

.cookie-details {
  background: #f7fafc;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #00b894;
  margin-bottom: 1.5rem;
}

.cookie-details p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #4a5568;
}

.cookie-details p:last-child {
  margin-bottom: 0;
}

.cookie-actions {
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid #e2e8f0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.cookie-btn {
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-size: 0.9rem;
}

.cookie-btn.primary {
  background: #00b894;
  color: white;
}

.cookie-btn.primary:hover {
  background: #00a085;
  transform: translateY(-1px);
}

.cookie-btn.secondary {
  background: #667eea;
  color: white;
}

.cookie-btn.secondary:hover {
  background: #5a6fd8;
  transform: translateY(-1px);
}

.cookie-btn.tertiary {
  background: #e2e8f0;
  color: #4a5568;
  border: 1px solid #cbd5e0;
}

.cookie-btn.tertiary:hover {
  background: #edf2f7;
}

.cookie-link {
  color: #00b894;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.cookie-link:hover {
  text-decoration: underline;
}

/* Cookie Settings Button (floating) */
.cookie-settings-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.cookie-settings-btn button {
  background: #00b894;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 184, 148, 0.3);
  transition: all 0.3s ease;
}

.cookie-settings-btn button:hover {
  background: #00a085;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 184, 148, 0.4);
}

/* Responsive Design for Cookie Popup */
@media (max-width: 768px) {
  .cookie-content {
    margin: 10px;
    max-height: 95vh;
  }
  
  .cookie-header {
    padding: 1rem 1.5rem 0.5rem;
  }
  
  .cookie-body {
    padding: 1rem 1.5rem;
  }
  
  .cookie-actions {
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .cookie-btn {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-link {
    align-self: center;
    margin-top: 0.5rem;
  }
}

@media (max-width: 480px) {
  .cookie-content {
    margin: 5px;
    max-height: 98vh;
  }
  
  .cookie-header h3 {
    font-size: 1.1rem;
  }
  
  .cookie-description {
    margin-left: 1rem;
    font-size: 0.85rem;
  }
  
  .cookie-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
  
  .cookie-settings-btn {
    bottom: 15px;
    right: 15px;
  }
  
  .cookie-settings-btn button {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

/* Legal Pages Styling */
.legal-container {
  min-height: 100vh;
  background: #f8f9fa;
  padding: 100px 0 40px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  line-height: 1.7;
}

.legal-content h1 {
  font-size: 2.5rem;
  color: #2d3748;
  margin-bottom: 1rem;
  text-align: center;
  border-bottom: 3px solid #00b894;
  padding-bottom: 1rem;
}

.legal-meta {
  text-align: center;
  color: #718096;
  font-style: italic;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.legal-intro {
  background: #edf2f7;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2.5rem;
  border-left: 4px solid #00b894;
}

.legal-intro p {
  font-size: 1.1rem;
  color: #4a5568;
  margin: 0;
}

.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.legal-section:last-of-type {
  border-bottom: none;
  margin-bottom: 1.5rem;
}

.legal-section h2 {
  font-size: 1.8rem;
  color: #2d3748;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.legal-section h2:before {
  content: '';
  width: 4px;
  height: 1.8rem;
  background: #00b894;
  margin-right: 1rem;
  border-radius: 2px;
}

.legal-section h3 {
  font-size: 1.3rem;
  color: #2d3748;
  margin: 1.5rem 0 1rem 0;
  font-weight: 600;
}

.legal-section p {
  margin-bottom: 1rem;
  color: #4a5568;
  font-size: 1rem;
}

.legal-section ul,
.legal-section ol {
  margin: 1rem 0 1.5rem 0;
  padding-left: 2rem;
}

.legal-section li {
  margin-bottom: 0.8rem;
  color: #4a5568;
  line-height: 1.6;
}

.legal-section li strong {
  color: #2d3748;
  font-weight: 600;
}

.contact-info {
  background: #f7fafc;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: #00b894;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}

.legal-footer {
  background: #edf2f7;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.legal-footer p {
  color: #718096;
  font-style: italic;
  margin: 0;
}

/* Navigation styling for legal pages */
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: #4a5568;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background: #f7fafc;
  color: #00b894;
}

.nav-links a.active {
  background: #00b894;
  color: white;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-img {
  height: 40px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2d3748;
}

/* Footer styling for legal pages */
.footer-section {
  margin-bottom: 1.5rem;
}

.footer-section h3 {
  color: #e2e8f0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

.footer-section li {
  margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #4a5568;
  color: #a0aec0;
  font-size: 0.9rem;
}

/* Responsive design for legal pages */
@media (max-width: 768px) {
  .legal-content {
    margin: 0 20px;
    padding: 2rem 1.5rem;
  }
  
  .legal-content h1 {
    font-size: 2rem;
  }
  
  .legal-section h2 {
    font-size: 1.5rem;
  }
  
  .legal-section h3 {
    font-size: 1.2rem;
  }
  
  .legal-intro,
  .legal-footer,
  .contact-info {
    padding: 1.5rem;
  }
  
  .nav-links {
    gap: 1rem;
  }
  
  .nav-links a {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .legal-container {
    padding: 80px 0 20px;
  }
  
  .legal-content {
    margin: 0 10px;
    padding: 1.5rem 1rem;
  }
  
  .legal-content h1 {
    font-size: 1.8rem;
  }
  
  .legal-section ul,
  .legal-section ol {
    padding-left: 1.5rem;
  }
  
  .nav-container {
    padding: 0 15px;
  }
  
  .nav-links {
    gap: 0.5rem;
  }
  
  .nav-links a {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
  }
}