:root {
  --accent: #0066ff;
  --accent-light: #4d94ff;
  --dark: #0a0a0a;
  --dark-secondary: #1a1a1a;
  --muted: #666;
  --border: #e0e0e0;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --dur: 600ms;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  background: #fafafa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Navigation - Redesigned with glass effect */
.navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.2rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transform: translateY(0);
  transition: transform 320ms var(--ease), background 220ms var(--ease);
}

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

.logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.02em;
}

.logo-text::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
}

.logo-subtitle {
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-menu a {
  color: var(--dark);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.3s var(--ease);
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}

.nav-menu a:hover {
  color: var(--accent);
}

.nav-menu a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  display: block;
  transition: transform 240ms var(--ease), opacity 240ms var(--ease);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* Hero Section - Modern asymmetric layout */
/* Hero Section - Modern asymmetric layout */
/* Hero Section - Modern asymmetric layout */
.hero-section {
  padding: 9rem 3rem 7rem;
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('tax.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(0, 102, 255, 0.03) 100%
  );
  border-radius: 0 0 0 300px;
  z-index: 1;
}
/* Hero Section - Modern asymmetric layout */
.hero-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 9rem 3rem 7rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(0, 102, 255, 0.03) 100%
  );
  border-radius: 0 0 0 300px;
}

.content-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.main-title {
  font-size: 5.5rem;
  font-weight: 900;
  margin: 0 0 1.5rem 0;
  line-height: 1.05;
  color: var(--dark);
  letter-spacing: -0.03em;
}

.title-highlight {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 540px;
  line-height: 1.7;
}

.cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--dark);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.hero-cta::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 var(--ease);
}

.hero-cta:hover::before {
  left: 100%;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.hero-cta-secondary {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
  box-shadow: none;
}

.hero-cta-secondary:hover {
  background: var(--dark);
  color: #fff;
}

.hero-media {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, #f0f4ff 0%, #e6ecff 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 600;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 102, 255, 0.08);
}

.hero-media::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(0, 102, 255, 0.05) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

/* Stats bar */
.stats-bar {
  display: flex;
  gap: 4rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.stat-item {
  flex: 1;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Experience Section - Card style */
.experience-section {
  padding: 8rem 3rem;
  background: #fff;
}

.experience-container {
  max-width: 1280px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 32px;
  padding: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.experience-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.years-badge {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.experience-description {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
}

/* Section Headers */
.section-wrapper {
  padding: 8rem 3rem;
  background: #fafafa;
}

.section-wrapper.white {
  background: #fff;
}

.section-header {
  max-width: 1280px;
  margin: 0 auto 5rem;
  text-align: center;
}

.section-label {
  display: inline-block;
  background: rgba(0, 102, 255, 0.1);
  color: var(--accent);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Cards - Completely redesigned */
.cards-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    var(--accent-light) 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 102, 255, 0.12);
  border-color: rgba(0, 102, 255, 0.2);
}

.card-header {
  padding: 2.5rem 2.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.card-badge {
  display: inline-block;
  background: rgba(0, 102, 255, 0.08);
  color: var(--accent);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.card-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.card-pricing {
  padding: 2rem 2.5rem;
  background: #f8f9fa;
}

.price-tag {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--dark);
  letter-spacing: -0.02em;
  transition: color 0.3s var(--ease);
}

.service-card:hover .price-tag {
  color: var(--accent);
}

.price-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.card-content {
  padding: 2.5rem;
  flex: 1;
}

.timeline-badge {
  display: inline-block;
  background: var(--dark);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

.features-list li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  background: rgba(0, 102, 255, 0.1);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.card-cta {
  width: 100%;
  background: var(--dark);
  color: #fff;
  border: none;
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.card-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s var(--ease-out), height 0.5s var(--ease-out);
}

.card-cta:hover::before {
  width: 400px;
  height: 400px;
}

.card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Contact Section - Redesigned grid */
/* Optimized Contact Section */
.contact-section {
  padding: 100px 20px;
  background-color: #ffffff;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
  font-weight: 500;
}

.status-dot {
  height: 8px;
  width: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

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

/* The Messenger Card Style */
/* Optimized Contact Section */
.contact-section {
  padding: 100px 20px;
  background-color: #ffffff;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
  font-weight: 500;
}

.status-dot {
  height: 8px;
  width: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

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

/* The Messenger Card Style */

/* Dark Minimalist Contact Section */
 body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            margin: 0;
            padding: 20px;
            background: #f5f5f5;
        }

        .contact-section {
            padding: 100px 20px;
            background-color: #0f1113;
            color: #ffffff;
        }

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

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .status-indicator {
            display: inline-flex;
            align-items: center;
            font-size: 14px;
            color: #22c55e;
            margin-bottom: 15px;
            background: rgba(34, 197, 94, 0.1);
            padding: 6px 12px;
            border-radius: 50px;
        }

        .status-dot {
            height: 8px;
            width: 8px;
            background-color: #22c55e;
            border-radius: 50%;
            margin-right: 8px;
            box-shadow: 0 0 10px #22c55e;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.2); opacity: 0.7; }
        }

        .contact-title {
            color: #ffffff;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .contact-subtitle {
            color: #9ca3af;
            margin-bottom: 50px;
            font-size: 1.15rem;
        }

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

        .contact-card {
            background: #1a1d21;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 28px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .contact-card:hover {
            transform: translateY(-8px);
            background: #23272c;
            border-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .contact-icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.03);
            color: #ffffff;
            transition: transform 0.3s ease;
        }

        .contact-card:hover .contact-icon {
            transform: scale(1.1);
        }

        .contact-card h4 {
            font-size: 22px;
            margin-bottom: 10px;
            color: #ffffff;
            font-weight: 700;
        }

        .contact-detail {
            color: #9ca3af;
            font-size: 15px;
            margin-bottom: 30px;
        }

        .contact-cta {
            width: 100%;
            background: #ffffff;
            color: #000000;
            border: none;
            padding: 14px 24px;
            border-radius: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.2s ease, background 0.2s ease;
            text-decoration: none;
            display: block;
            font-size: 15px;
            box-sizing: border-box;
            text-align: center;
        }

        .contact-cta:hover {
            background: #e5e7eb;
            transform: scale(1.02);
        }

        @media (max-width: 768px) {
            .contact-title {
                font-size: 2.2rem;
            }
            .contact-card {
                padding: 30px 20px;
            }
            .contact-section {
                padding: 60px 20px;
            }
        }
/* Features Section */
.features-section {
  padding: 8rem 3rem;
  background: #fff;
}

.features-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.feature-box {
  text-align: center;
  padding: 2rem;
  transition: transform 0.3s var(--ease);
}

.feature-box:hover {
  transform: translateY(-8px);
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.1) 0%,
    rgba(77, 148, 255, 0.1) 100%
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s var(--ease-bounce);
}

.feature-box:hover .feature-icon-wrapper {
  transform: rotate(-5deg) scale(1.05);
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.15) 0%,
    rgba(77, 148, 255, 0.15) 100%
  );
}

.feature-icon-wrapper svg {
  width: 40px;
  height: 40px;
  color: var(--accent);
}

.feature-box h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.feature-box p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-scale.in-view {
  opacity: 1;
  transform: scale(1);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-media {
    order: -1;
    height: 350px;
  }

  .main-title {
    font-size: 3.5rem;
  }

  .experience-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

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

  .hamburger {
    display: flex;
  }

  .main-title {
    font-size: 2.5rem;
  }

  .section-title,
  .contact-title {
    font-size: 2.5rem;
  }

  .hero-section,
  .section-wrapper,
  .experience-section,
  .contact-section,
  .features-section {
    padding: 4rem 1.5rem;
  }

  .nav-container {
    padding: 0 1.5rem;
  }

  .stats-bar {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Add this to your style.css for mobile menu */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }
}
 .nav-menu a.active {
            color: #4F46E5;
        }
        
        .nav-menu a.active::after {
            width: 100%;
            background: #4F46E5;
        }
        
        .migration-container {
            max-width: 900px;
            margin: 120px auto 60px;
            padding: 40px 20px;
        }
        
        .migration-content {
            background: white;
            border-radius: 16px;
            padding: 60px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            line-height: 1.8;
        }
        
        .migration-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 40px;
            text-align: center;
            border-bottom: 3px solid #4F46E5;
            padding-bottom: 20px;
        }
        
        .migration-section {
            margin-bottom: 35px;
        }
        
        .migration-section h2 {
            font-size: 1.8rem;
            color: #4F46E5;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .migration-section p,
        .migration-section ul {
            font-size: 1.1rem;
            color: #333;
            margin-bottom: 15px;
        }
        
        .migration-section ul {
            padding-left: 25px;
        }
        
        .migration-section li {
            margin-bottom: 12px;
        }
        
        .highlight-box {
            background: #f0f4ff;
            border-left: 4px solid #4F46E5;
            padding: 20px 25px;
            border-radius: 8px;
            margin: 25px 0;
        }
        
        .highlight-box strong {
            color: #4F46E5;
        }
        
        .link-box {
            background: #4F46E5;
            color: white;
            padding: 15px 25px;
            border-radius: 8px;
            text-align: center;
            margin: 30px 0;
        }
        
        .link-box a {
            color: white;
            text-decoration: underline;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        @media (max-width: 768px) {
            .migration-content {
                padding: 30px 20px;
            }
            
            .migration-title {
                font-size: 1.8rem;
            }
            
            .migration-section h2 {
                font-size: 1.4rem;
            }
            
            .migration-section p,
            .migration-section ul {
                font-size: 1rem;
            }
        }