@charset "utf-8";
/*
    Theme Name: EhViewer官网
    Theme URI: 
    Author: 阿叶
    Author URI: 
    Description:
    Version: 0.0.1
*/


/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
  background: #0f0d1a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.eh-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Buttons */
.eh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.eh-btn-primary {
  background: linear-gradient(135deg, #019c8a 0%, #02c4ac 100%);
  color: white;
  box-shadow: 0 0 40px rgba(1, 156, 138, 0.3);
}

.eh-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(1, 156, 138, 0.5);
}

.eh-btn-secondary {
  background: #1a1625;
  color: #ffffff;
  border: 1px solid #2d2a3e;
}

.eh-btn-secondary:hover {
  background: #252136;
  border-color: #019c8a;
}

.eh-btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

.eh-btn-lg {
  padding: 16px 32px;
  font-size: 18px;
}

.eh-btn-block {
  width: 100%;
}

.eh-btn-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
}

/* ========================================
   Navigation
   ======================================== */
.eh-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: transparent;
  transition: all 0.3s ease;
}

.eh-navbar.scrolled {
  background: rgba(15, 13, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #2d2a3e;
  padding: 12px 0;
}

.eh-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.eh-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
}

.eh-logo-icon {
    width: 50px;
    height: 50px;
}

.eh-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.eh-nav-links a {
  color: #a5a3b3;
  font-weight: 500;
  position: relative;
}

.eh-nav-links a:not(.eh-btn):hover {
  color: #ffffff;
}

.eh-nav-links a:not(.eh-btn)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #019c8a 0%, #02c4ac 100%);
  transition: all 0.3s ease;
}

.eh-nav-links a:not(.eh-btn):hover::after {
  width: 100%;
}

/* Mobile Menu Button */
.eh-mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.eh-mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}

/* ========================================
   Hero Section
   ======================================== */
.eh-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.eh-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      ellipse 80% 50% at 50% -20%,
      rgba(1, 156, 138, 0.3),
      transparent
    ),
    radial-gradient(
      ellipse 60% 40% at 80% 60%,
      rgba(2, 196, 172, 0.15),
      transparent
    );
  z-index: -1;
}

.eh-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.eh-hero-content {
  max-width: 600px;
}

.eh-hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(1, 156, 138, 0.2);
  border: 1px solid rgba(1, 156, 138, 0.3);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: #02c4ac;
  margin-bottom: 24px;
}

.eh-hero-title {
  font-size: 64px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #a5a3b3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.eh-hero-subtitle {
  font-size: 24px;
  color: #02c4ac;
  margin-bottom: 16px;
}

.eh-hero-description {
  font-size: 18px;
  color: #a5a3b3;
  margin-bottom: 32px;
}

.eh-hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.eh-hero-stats {
  display: flex;
  gap: 48px;
}

.eh-stat {
  text-align: center;
}

.eh-stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
}

.eh-stat-label {
  font-size: 14px;
  color: #6b6880;
}

/* Phone Mockup */
.eh-hero-image {
  display: flex;
  justify-content: center;
}

.eh-phone-mockup {
  position: relative;
  width: 280px;
  background: #1a1625;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(1, 156, 138, 0.3);
  border: 3px solid #2d2a3e;
}

.eh-phone-screen {
  width: 100%;
  height: 100%;
  background: #0f0d1a;
  border-radius: 28px;
  overflow: hidden;
}

.eh-app-preview {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.eh-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 16px;
  background: #019c8a;
  color: white;
  font-weight: 600;
}

.eh-app-grid {
}
.eh-app-grid img {
    width: 100%;
border-bottom-right-radius: 26px;
    border-bottom-left-radius: 26px;
}
.eh-app-card {
  background: linear-gradient(135deg, #374151, #1f2937);
  border-radius: 12px;
  aspect-ratio: 3/4;
  animation: eh-pulse 2s ease-in-out infinite;
}

.eh-app-card:nth-child(2) {
  animation-delay: 0.2s;
}
.eh-app-card:nth-child(3) {
  animation-delay: 0.4s;
}
.eh-app-card:nth-child(4) {
  animation-delay: 0.6s;
}
.eh-app-card:nth-child(5) {
  animation-delay: 0.8s;
}
.eh-app-card:nth-child(6) {
  animation-delay: 1s;
}

@keyframes eh-pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* ========================================
   Section Styles
   ======================================== */
section {
  padding: 100px 0;
}

.eh-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.eh-section-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(1, 156, 138, 0.15);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #02c4ac;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.eh-section-title {
  font-size: 42px;
  margin-bottom: 16px;
}

.eh-section-description {
  font-size: 18px;
  color: #a5a3b3;
}

/* ========================================
   Features Section
   ======================================== */
.eh-features {
  background: linear-gradient(180deg, #0f0d1a 0%, #1a1625 100%);
}

.eh-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.eh-feature-card {
  background: #1a1625;
  border: 1px solid #2d2a3e;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.eh-feature-card:hover {
  transform: translateY(-8px);
  border-color: #019c8a;
  box-shadow: 0 0 40px rgba(1, 156, 138, 0.3);
}

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

.eh-feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.eh-feature-card p {
  color: #a5a3b3;
  font-size: 15px;
}

/* ========================================
   Download Section
   ======================================== */
.eh-download {
  background: #0f0d1a;
}

.eh-download-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.eh-download-card {
  position: relative;
  background: #1a1625;
  border: 1px solid #2d2a3e;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.eh-download-card:hover {
  transform: translateY(-4px);
  border-color: #019c8a;
}

.eh-download-card.featured {
  border-color: #019c8a;
  background: linear-gradient(
    180deg,
    rgba(1, 156, 138, 0.1) 0%,
    #1a1625 100%
  );
}

.eh-download-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #019c8a 0%, #02c4ac 100%);
  color: white;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.eh-download-card-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.eh-download-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.eh-download-card .eh-version {
  color: #02c4ac;
  font-weight: 600;
  margin-bottom: 8px;
}

.eh-download-card .eh-description {
  color: #6b6880;
  font-size: 14px;
  margin-bottom: 20px;
}

.eh-download-info {
  text-align: left;
  margin-bottom: 24px;
}

.eh-download-info li {
  color: #a5a3b3;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid #2d2a3e;
}

.eh-download-info li:last-child {
  border-bottom: none;
}

.eh-download-note {
  text-align: center;
  padding: 20px;
  background: rgba(1, 156, 138, 0.1);
  border-radius: 12px;
  color: #a5a3b3;
}

/* ========================================
   Guide Section
   ======================================== */
.eh-guide {
  background: linear-gradient(180deg, #0f0d1a 0%, #1a1625 100%);
}

.eh-guide-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.eh-guide-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 280px;
}

.eh-step-number {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #019c8a 0%, #02c4ac 100%);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 0 40px rgba(1, 156, 138, 0.3);
}

.eh-step-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.eh-step-content p {
  color: #a5a3b3;
  font-size: 15px;
}

.eh-guide-connector {
  width: 80px;
  height: 2px;
  background: #2d2a3e;
  margin-bottom: 60px;
}

/* ========================================
   FAQ Section
   ======================================== */
.eh-faq {
  background: #0f0d1a;
}

.eh-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.eh-faq-item {
  border: 1px solid #2d2a3e;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.eh-faq-item:hover {
  border-color: #019c8a;
}

.eh-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: #1a1625;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.eh-faq-question:hover {
  background: #252136;
}

.eh-faq-icon {
  width: 20px;
  height: 20px;
  color: #6b6880;
  transition: all 0.3s ease;
  display: inline-block;
  content: "↓";
}

.eh-faq-item.active .eh-faq-icon {
  transform: rotate(180deg);
  color: #019c8a;
}

.eh-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.eh-faq-item.active .eh-faq-answer {
  max-height: 200px;
}

.eh-faq-answer p {
  padding: 0 24px 20px;
  color: #a5a3b3;
  line-height: 1.8;
}

/* ========================================
   Changelog Section
   ======================================== */
.eh-changelog {
  background: linear-gradient(180deg, #0f0d1a 0%, #1a1625 100%);
}

.eh-changelog-list {
  max-width: 800px;
  margin: 0 auto;
}

.eh-changelog-item {
  position: relative;
  padding-left: 32px;
  padding-bottom: 40px;
  border-left: 2px solid #2d2a3e;
}

.eh-changelog-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 0;
  width: 10px;
  height: 10px;
  background: #019c8a;
  border-radius: 50%;
}

.eh-changelog-item:last-child {
  padding-bottom: 0;
}

.eh-changelog-version {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.eh-version-tag {
  display: inline-block;
  padding: 4px 12px;
  background: #1a1625;
  border: 1px solid #2d2a3e;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.eh-version-tag.latest {
  background: rgba(1, 156, 138, 0.2);
  border-color: #019c8a;
  color: #02c4ac;
}

.eh-version-date {
  color: #6b6880;
  font-size: 14px;
}

.eh-changelog-content h4 {
  color: #a5a3b3;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 16px 0 8px;
}

.eh-changelog-content h4:first-child {
  margin-top: 0;
}

.eh-changelog-content ul {
  list-style: disc;
  padding-left: 20px;
}

.eh-changelog-content li {
  color: #a5a3b3;
  font-size: 15px;
  padding: 4px 0;
}

.eh-changelog-more {
  text-align: center;
  margin-top: 40px;
}

/* ========================================
   Footer
   ======================================== */
.eh-footer {
  background: #1a1625;
  border-top: 1px solid #2d2a3e;
  padding: 80px 0 40px;
}

.eh-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.eh-footer-brand p {
  color: #a5a3b3;
  margin: 20px 0;
  max-width: 300px;
}

.eh-footer-social {
  display: flex;
  gap: 16px;
}

.eh-footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f0d1a;
  border-radius: 8px;
  color: #a5a3b3;
  transition: all 0.3s ease;
}

.eh-footer-social a:hover {
  background: #019c8a;
  color: white;
}

.eh-footer-social .social-icon {
  font-size: 20px;
}

.eh-footer-links h4 {
  font-size: 16px;
  margin-bottom: 20px;
}

.eh-footer-links li {
  margin-bottom: 12px;
}

.eh-footer-links a {
  color: #a5a3b3;
  font-size: 15px;
}

.eh-footer-links a:hover {
  color: #02c4ac;
}

.eh-footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #2d2a3e;
}

.eh-footer-bottom p {
  color: #6b6880;
  font-size: 14px;
}

.eh-footer-bottom .eh-disclaimer {
  margin-top: 8px;
  font-size: 12px;
}

/* ========================================
   Back to Top Button
   ======================================== */
.eh-back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #019c8a 0%, #02c4ac 100%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 0 40px rgba(1, 156, 138, 0.3);
  font-size: 24px;
  color: white;
}

.eh-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.eh-back-to-top:hover {
  transform: translateY(-4px);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
  .eh-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .eh-hero-content {
    max-width: 100%;
  }

  .eh-hero-buttons {
    justify-content: center;
  }

  .eh-hero-stats {
    justify-content: center;
  }

  .eh-hero-image {
    order: -1;
  }

  .eh-phone-mockup {
    width: 240px;
    height: 480px;
  }

  .eh-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .eh-download-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .eh-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .eh-mobile-menu-btn {
    display: flex;
  }

  .eh-nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    flex-direction: column;
    background: #1a1625;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: all 0.3s ease;
    border-left: 1px solid #2d2a3e;
  }

  .eh-nav-links.active {
    right: 0;
  }

  .eh-nav-links a:not(.eh-btn)::after {
    display: none;
  }

  .eh-hero-title {
    font-size: 42px;
  }

  .eh-hero-subtitle {
    font-size: 20px;
  }

  .eh-section-title {
    font-size: 32px;
  }

  .eh-features-grid {
    grid-template-columns: 1fr;
  }

  .eh-download-cards {
    grid-template-columns: 1fr;
  }

  .eh-guide-steps {
    flex-direction: column;
  }

  .eh-guide-connector {
    width: 2px;
    height: 40px;
    margin: 0;
  }

  .eh-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ========================================
   Legal Pages Styles
   ======================================== */

.eh-privacy-policy-page,
.eh-terms-page,
.eh-disclaimer-page {
  padding: 80px 0 60px;
  min-height: calc(100vh - 160px);
}

.eh-page-header {
  text-align: center;
  margin-bottom: 30px;
}

.eh-page-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.eh-page-subtitle {
  font-size: 20px;
  color: #a5a3b3;
  margin-bottom: 24px;
}

.eh-page-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  color: #6b6880;
}

.eh-page-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.eh-policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.eh-policy-section {
  margin-bottom: 32px;
}

.eh-policy-section h2 {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  border-bottom: 2px solid #019c8a;
  padding-bottom: 12px;
}

.eh-policy-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 20px 0 12px;
}

.eh-policy-section p {
  line-height: 1.7;
  color: #a5a3b3;
  margin-bottom: 8px;
}

/* News article tighter spacing */
.eh-news-article .eh-policy-section p {
  line-height: 1.5;
  margin-bottom: 6px;
}
/* Reduce section gaps inside news articles */
.eh-news-article .eh-policy-section {
  margin-bottom: 12px;
}
.eh-news-article .eh-policy-section h2 {
  margin-bottom: 8px;
  padding-bottom: 8px;
}
.eh-news-article .eh-policy-section ul {
  margin: 8px 0;
  padding-left: 20px;
}
.eh-news-article .eh-policy-section li {
  margin-bottom: 4px;
}

/* Improved article typography for news pages */
.eh-news-article .eh-container {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.eh-news-article .eh-page-header {
  text-align: center;
  margin-bottom: 12px;
}

.eh-news-article .eh-page-title {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.eh-news-article .eh-page-subtitle {
  color: #6b6880;
  margin-bottom: 18px;
}

.eh-news-article h2 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  color: #ffffff;
  border-bottom: 2px solid rgba(1, 156, 138, 0.12);
}

.eh-news-article .eh-policy-section p {
  line-height: 1.6;
  color: #a5a3b3;
  margin-bottom: 12px;
  font-size: 16px;
}

.eh-news-article .eh-policy-section ul {
  margin: 8px 0 12px 20px;
}

.eh-news-article .eh-page-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.eh-policy-section ul {
  margin: 16px 0;
  padding-left: 24px;
}

.eh-policy-section li {
  line-height: 1.6;
  color: #a5a3b3;
  margin-bottom: 6px;
}

.eh-policy-section a {
  color: #019c8a;
  text-decoration: none;
  transition: all 0.3s ease;
}

.eh-policy-section a:hover {
  color: #02c4ac;
  text-decoration: underline;
}

.eh-highlight {
  background: rgba(1, 156, 138, 0.1);
  border-left: 4px solid #019c8a;
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 8px;
  font-weight: 500;
}

.eh-disclaimer-notice {
  margin-bottom: 60px;
}

.eh-notice-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #1a1625;
  border: 1px solid #2d2a3e;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.eh-notice-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.eh-notice-content h3 {
  color: #ffffff;
  margin-bottom: 8px;
  font-size: 18px;
}

.eh-notice-content p {
  color: #a5a3b3;
  margin: 0;
}

.eh-acceptance-section {
  background: #1a1625;
  border: 2px solid #f59e0b;
  border-radius: 16px;
  padding: 32px;
  margin: 40px 0;
  text-align: center;
}

.eh-acceptance-section h3 {
  color: #f59e0b;
  font-size: 24px;
  margin-bottom: 16px;
}

.eh-acceptance-section p {
  color: #a5a3b3;
  line-height: 1.6;
  margin-bottom: 12px;
}

.eh-page-actions {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #2d2a3e;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
  .eh-privacy-policy-page,
  .eh-terms-page,
  .eh-disclaimer-page {
    padding: 100px 0 60px;
  }

  .eh-page-title {
    font-size: 36px;
  }

  .eh-page-subtitle {
    font-size: 18px;
  }

  .eh-page-meta {
    flex-direction: column;
    gap: 12px;
  }

  .eh-policy-section h2 {
    font-size: 24px;
  }

  .eh-notice-box {
    flex-direction: column;
    text-align: center;
  }

  .eh-acceptance-section {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .eh-hero {
    padding: 100px 0 60px;
  }

  .eh-hero-title {
    font-size: 36px;
  }

  .eh-hero-buttons {
    flex-direction: column;
  }

  .eh-hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .eh-phone-mockup {
    width: 200px;
    height: 400px;
  }

  section {
    padding: 60px 0;
  }

  .eh-page-title {
    font-size: 32px;
  }

  .eh-policy-content {
    padding: 0 16px;
  }

  .eh-policy-section h2 {
    font-size: 20px;
  }
}