* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    /* Ant Design Color Palette */
    --primary-color: #1677ff;
    --primary-hover: #4096ff;
    --primary-light: #e6f4ff;
    --primary-bg: #f0f5ff;
    --text-primary: #000000e0;
    --text-secondary: #00000073;
    --text-tertiary: #00000045;
    --border-color: #d9d9d9;
    --bg-color: #fafafa;
    --white: #ffffff;
    --success: #52c41a;
    --warning: #faad14;
    --error: #ff4d4f;
    --gradient-primary: linear-gradient(135deg, #1677ff 0%, #69b1ff 100%);
    --gradient-dark: linear-gradient(135deg, #001529 0%, #002140 100%);
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
    overflow-x: hidden;
  }
  
  /* Smooth Scrolling */
  html {
    scroll-behavior: smooth;
  }
  
  /* Container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  /* Header Styles */
  .header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
  }
  
  .header.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
  
  .header-content {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .logo-section:hover {
    transform: translateY(-2px);
  }
  
  .logo-section .logo-icon {
    width: 36px !important;
    height: 36px !important;
    background: linear-gradient(135deg, #1677ff 0%, #69b1ff 100%) !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: rotate(45deg) !important;
    box-shadow: 0 4px 12px rgba(22, 119, 255, 0.2) !important;
    position: relative !important;
    min-width: 36px !important;
    min-height: 36px !important;
    flex-shrink: 0 !important;
  }
  
  .logo-section .logo-icon::before {
    content: "↗" !important;
    color: white !important;
    font-size: 20px !important;
    font-weight: bold !important;
    transform: rotate(-45deg) !important;
    line-height: 1 !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    text-align: center !important;
  }
  
  .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #000000e0 !important;
    letter-spacing: -0.5px;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
  }
  
  .nav-section {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  
  .nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
  }
  
  .nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
  }
  
  .nav-link:hover {
    color: var(--primary-color);
  }
  
  .nav-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  /* Dropdown Styles */
  .nav-dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
  }
  
  .nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }
  
  .dropdown-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    /* border-radius: 16px; */
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12); */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 200;
    width: 100%;
    margin-top: 0;
  }
  
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
  
  .dropdown-content {
    padding: 32px;
    display: flex;
    gap: 32px;
  }
  
  .dropdown-section {
    flex: 2;
  }
  
  .dropdown-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
  }
  
  .dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
  
  .dropdown-item,
  .promo-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
  }
  
  .dropdown-item:hover,
  .promo-item:hover {
    background: var(--primary-bg);
    transform: translateY(-2px);
  }
  
  .dropdown-icon,
  .promo-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  .dropdown-info,
  .promo-info {
    flex: 1;
  }
  
  .dropdown-info h4,
  .promo-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
  }
  
  .dropdown-info p,
  .promo-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
  }
  
  .dropdown-chevron {
    color: var(--text-tertiary);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 8px;
    transition: color 0.3s ease;
  }
  
  .dropdown-item:hover .dropdown-chevron,
  .promo-item:hover .dropdown-chevron {
    color: var(--primary-color);
  }
  
  /* Dropdown Promo Section */
  .dropdown-promo {
    flex: 1;
    background: linear-gradient(135deg, #f0f5ff 0%, #e6f4ff 100%);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .promo-item {
    background: var(--white);
    border: 1px solid rgba(22, 119, 255, 0.1);
    margin: 0;
  }
  
  .promo-item:hover {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(22, 119, 255, 0.15);
  }
  
  .nav-buttons {
    display: flex;
    gap: 12px;
  }
  
  .btn {
    padding: 8px 20px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  
  .btn-ghost {
    background: transparent;
    border-color: transparent;
    color: var(--text-primary);
  }
  
  .btn-ghost:hover {
    background: var(--primary-light);
    color: var(--primary-color);
  }
  
  .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 2px 8px rgba(22, 119, 255, 0.2);
  }
  
  .btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(22, 119, 255, 0.3);
  }
  
  /* Hero Section */
  .hero {
    margin-top: 72px;
    padding: 120px 0 80px;
    background: linear-gradient(to bottom, var(--primary-bg) 0%, rgba(240, 245, 255, 0) 100%);
    position: relative;
    overflow: hidden;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(22, 119, 255, 0.1) 0%, transparent 70%);
    animation: pulse 20s ease-in-out infinite;
  }
  
  @keyframes pulse {
    0%,
    100% {
      transform: scale(1);
      opacity: 0.5;
    }
    50% {
      transform: scale(1.1);
      opacity: 0.3;
    }
  }
  
  .hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  
  .badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
  }
  
  @keyframes blink {
    0%,
    100% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
  }
  
  .hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero-h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
  }
  
  .hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .cta-primary {
    background: var(--primary-color);
    color: white;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(22, 119, 255, 0.2);
  }
  
  .cta-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(22, 119, 255, 0.3);
  }
  
  .cta-secondary {
    background: var(--white);
    color: var(--text-primary);
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .cta-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--primary-light);
  }
  
  /* Logo Marquee Section */
  .logo-marquee {
    padding: 80px 0;
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }
  
  .marquee-title {
    text-align: center;
    font-size: 14px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-weight: 600;
  }
  
  .marquee-container {
    position: relative;
    overflow: hidden;
  }
  
  .marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
  }
  
  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  .marquee-item {
    flex-shrink: 0;
    margin: 0 40px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
  
  .marquee-item:hover {
    opacity: 1;
  }
  
  .partner-logo {
    height: 40px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
  }
  
  .marquee-item:hover .partner-logo {
    filter: grayscale(0%);
  }
  
  /* Features Section */
  .features {
    padding: 100px 0;
    background: var(--white);
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 80px;
  }
  
  .section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
  }
  
  .section-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
  }
  
  .section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
  }
  
  .feature-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  
  .feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(22, 119, 255, 0.1);
    transform: translateY(-4px);
  }
  
  .feature-card:hover::before {
    transform: scaleX(1);
  }
  
  .feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
  }
  
  .feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
  }
  
  .feature-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .feature-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
  }
  
  .feature-link:hover {
    gap: 10px;
  }
  
  /* Stats Section */
  .stats {
    padding: 80px 0;
    background: var(--gradient-dark);
    color: white;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    text-align: center;
  }
  
  .stat-item {
    position: relative;
  }
  
  .stat-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #69b1ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .stat-label {
    font-size: 18px;
    opacity: 0.8;
  }
  
  /* Testimonials Section */
  .testimonials {
    padding: 100px 0;
    background: var(--bg-color);
  }
  
  .testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    position: relative;
  }
  
  .quote-icon {
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 48px;
    color: var(--primary-light);
    opacity: 0.5;
  }
  
  .testimonial-text {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 32px;
    font-style: italic;
    color: var(--text-primary);
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 600;
  }
  
  .author-info {
    text-align: left;
  }
  
  .author-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
  }
  
  .author-role {
    font-size: 14px;
    color: var(--text-secondary);
  }
  
  /* FAQ Section */
  .faq-section {
    padding: 100px 0;
    background: var(--bg-color);
  }
  
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(22, 119, 255, 0.1);
  }
  
  .faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  .faq-question:hover {
    color: var(--primary-color);
  }
  
  .faq-icon {
    font-size: 16px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .faq-icon {
    transform: rotate(180deg);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  
  .faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 24px 24px;
  }
  
  .faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 16px;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
  }
  
  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .cta-content {
    position: relative;
    z-index: 1;
  }
  
  .cta-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -1px;
  }
  
  .cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
  }
  
  .cta-button {
    background: white;
    color: var(--primary-color);
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
  
  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  }
  
  /* Footer */
  .footer {
    background: var(--gradient-dark);
    color: white;
    padding: 80px 0 40px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  
  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .footer-logo .logo-icon {
    width: 36px !important;
    height: 36px !important;
    background: linear-gradient(135deg, #1677ff 0%, #69b1ff 100%) !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: rotate(45deg) !important;
    box-shadow: 0 4px 12px rgba(22, 119, 255, 0.2) !important;
    position: relative !important;
    min-width: 36px !important;
    min-height: 36px !important;
    flex-shrink: 0 !important;
    border: none !important;
  }
  .footer-logo .logo-icon::before {
    content: "↗" !important;
    color: white !important;
    font-size: 20px !important;
    font-weight: bold !important;
    transform: rotate(-45deg) !important;
    line-height: 1 !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    text-align: center !important;
  }
  
  .footer-logo .logo-text {
    color: white !important;
    -webkit-text-fill-color: white !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px !important;
  }
  
  .footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
  }
  
  .social-links {
    display: flex;
    gap: 12px;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
  }
  
  .footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-link:hover {
    color: white;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .copyright {
    color: rgba(255, 255, 255, 0.5);
  }
  
  .footer-bottom-links {
    display: flex;
    gap: 24px;
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .container {
      padding: 0 16px;
    }
  
    .nav-links {
      display: none;
    }
  
    .hero {
      padding: 80px 0 60px;
    }
  
    .hero-title {
      font-size: 48px;
    }
  
    .hero-subtitle {
      font-size: 18px;
    }
  
    .section-title {
      font-size: 36px;
    }
  
    .features-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    .hero-title {
      font-size: 36px;
    }
  
    .hero-cta {
      flex-direction: column;
      width: 100%;
    }
  
    .cta-primary,
    .cta-secondary {
      width: 100%;
      justify-content: center;
    }
  }
  
  /* Fast-Track Section */
  .fast-track-section {
    padding: 80px 0;
    background: var(--white);
  }
  
  .fast-track-list {
    max-width: 800px;
    margin: 0 auto 3rem;
  }
  
  .fast-track-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
  }
  
  .item-number {
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
  }
  
  .item-content {
    flex: 1;
  }
  
  .item-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  
  .item-description {
    font-size: 1rem;
    color: var(--gray-text);
    line-height: 1.6;
    margin: 0;
  }
  
  .fast-track-cta {
    text-align: center;
    margin-top: 3rem;
  }
  
  .fast-track-cta .cta-button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .fast-track-cta .cta-button:hover {
    background: #5a82d4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }
  
  /* Responsive design for fast-track section */
  @media (max-width: 768px) {
    .fast-track-item {
      flex-direction: column;
      text-align: center;
      margin-bottom: 2rem;
    }
  
    .item-number {
      margin: 0 auto 1rem auto;
    }
  
    .item-title {
      font-size: 1.2rem;
    }
  
    .fast-track-section {
      padding: 60px 0;
    }
  }
  
  /* Get Hired Fast Section */
  .get-hired-section {
    padding: 80px 0;
    background: #f8fafc;
  }
  
  .get-hired-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .get-hired-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
  }
  
  .get-hired-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  
  .get-hired-item .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
  }
  
  .get-hired-item .feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.8rem;
    line-height: 1.3;
  }
  
  .get-hired-item .feature-description {
    font-size: 1rem;
    color: var(--gray-text);
    line-height: 1.6;
    margin: 0;
  }
  
  /* Responsive design for get-hired section */
  @media (max-width: 768px) {
    .get-hired-features {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
    .get-hired-item {
      padding: 1.5rem;
    }
  
    .get-hired-item .feature-title {
      font-size: 1.2rem;
    }
  
    .get-hired-section {
      padding: 60px 0;
    }
  }
  
  /* Format Guide Section */
  .format-guide-section {
    padding: 80px 0;
    background: var(--white);
  }
  
  /* Examples Section */
  .examples-section {
    padding: 80px 0;
    background: #f8fafc;
  }
  
  /* 7-Step Guide Section */
  .guide-steps-section {
    padding: 80px 0;
    background: var(--white);
  }
  
  .steps-list {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
  }
  
  .step-number {
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
  }
  
  .step-content {
    flex: 1;
  }
  
  .step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  
  .step-description {
    font-size: 1rem;
    color: var(--gray-text);
    line-height: 1.6;
    margin: 0;
  }
  
  /* Start Options Section */
  .start-options-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  }
  
  .options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .option-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }
  
  .option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
  }
  
  .option-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #7aa3ec);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .option-card:hover::before {
    transform: scaleX(1);
  }
  
  .option-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
  }
  
  .option-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  
  .option-description {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
  }
  
  .option-details {
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  .option-button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(116, 144, 231, 0.3);
    width: 100%;
    max-width: 200px;
  }
  
  .option-button:hover {
    background: #5a82d4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(116, 144, 231, 0.4);
  }
  
  /* Responsive design for new sections */
  @media (max-width: 768px) {
    .step-item {
      flex-direction: column;
      text-align: center;
      margin-bottom: 2rem;
    }
  
    .step-number {
      margin: 0 auto 1rem auto;
    }
  
    .step-title {
      font-size: 1.2rem;
    }
  
    .options-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
    .option-card {
      padding: 2rem;
    }
  
    .option-title {
      font-size: 1.3rem;
    }
  
    .format-guide-section,
    .examples-section,
    .guide-steps-section,
    .start-options-section {
      padding: 60px 0;
    }
  }
  
  /* Best Cover Letter Format Section */
  .best-format-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  }
  
  .format-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: left;
  }
  
  .format-description p {
    font-size: 1.1rem;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 1.2rem;
  }
  
  .format-description p:last-child {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 2rem;
  }
  
  .features-grid-format {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .feature-card-format {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
  }
  
  .feature-card-format:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  }
  
  .feature-graphic {
    margin-bottom: 1.5rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Job Phrases Graphic */
  .job-phrases-graphic {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    padding: 1rem;
    border-radius: 12px;
    color: white;
    width: 100%;
    max-width: 200px;
  }
  
  .graphic-header {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
  }
  
  .graphic-content {
    font-size: 0.75rem;
  }
  
  .phrase-item {
    margin-bottom: 0.3rem;
    text-align: left;
  }
  
  /* Customization Graphic */
  .customization-graphic {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    padding: 1rem;
    border-radius: 12px;
    color: white;
    width: 100%;
    max-width: 200px;
  }
  
  .customization-controls {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  
  .control-item {
    font-size: 0.75rem;
    text-align: left;
  }
  
  /* Guidance Graphic */
  .guidance-graphic {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    padding: 1rem;
    border-radius: 12px;
    color: white;
    width: 100%;
    max-width: 200px;
  }
  
  .guidance-steps {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  
  .guidance-step {
    font-size: 0.75rem;
    text-align: left;
  }
  
  /* Download Graphic */
  .download-graphic {
    background: linear-gradient(135deg, #7c2d12 0%, #ea580c 100%);
    padding: 1rem;
    border-radius: 12px;
    color: white;
    width: 100%;
    max-width: 200px;
  }
  
  .format-icons {
    display: flex;
    justify-content: space-around;
    margin-top: 0.5rem;
  }
  
  .format-icon {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
  }
  
  .format-icon.pdf {
    background: rgba(220, 38, 38, 0.3);
  }
  
  .format-icon.docx {
    background: rgba(37, 99, 235, 0.3);
  }
  
  .format-icon.txt {
    background: rgba(107, 114, 128, 0.3);
  }
  
  .feature-title-format {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.8rem;
    line-height: 1.3;
  }
  
  .feature-description-format {
    font-size: 1rem;
    color: var(--gray-text);
    line-height: 1.6;
    margin: 0;
  }
  
  /* Responsive design for best format section */
  @media (max-width: 768px) {
    .features-grid-format {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
    .feature-card-format {
      padding: 1.5rem;
    }
  
    .feature-graphic {
      height: 100px;
    }
  
    .job-phrases-graphic,
    .customization-graphic,
    .guidance-graphic,
    .download-graphic {
      max-width: 180px;
      padding: 0.8rem;
    }
  
    .feature-title-format {
      font-size: 1.2rem;
    }
  
    .best-format-section {
      padding: 60px 0;
    }
  
    .format-description {
      text-align: center;
    }
  }
  
  /* Email Cover Letter Format Section */
  .email-format-section {
    padding: 80px 0;
    background: var(--white);
  }
  
  .email-steps-list {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .email-step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
  }
  
  .email-step-number {
    background: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    margin-right: 2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(116, 144, 231, 0.3);
  }
  
  .email-step-content {
    flex: 1;
  }
  
  .email-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .email-step-description {
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .email-example {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    margin-top: 1rem;
  }
  
  .example-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .example-text {
    font-size: 1rem;
    color: #4b5563;
    font-family: "Courier New", monospace;
    background: #f3f4f6;
    padding: 0.8rem;
    border-radius: 6px;
    border-left: 3px solid var(--primary-color);
  }
  
  /* Responsive design for email format section */
  @media (max-width: 768px) {
    .email-step-item {
      flex-direction: column;
      text-align: center;
      padding: 1.5rem;
      margin-bottom: 2rem;
    }
  
    .email-step-number {
      margin: 0 auto 1.5rem auto;
    }
  
    .email-step-title {
      font-size: 1.3rem;
    }
  
    .email-step-description {
      font-size: 1rem;
    }
  
    .email-format-section {
      padding: 60px 0;
    }
  }
  
  /* Email Preview Section */
  .email-preview-section {
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .email-preview-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .email-mockup {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid #e5e7eb;
  }
  
  .email-header {
    background: var(--primary-color);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .email-title {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
  }
  
  .email-controls {
    display: flex;
    gap: 0.5rem;
  }
  
  .control-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
  }
  
  .email-toolbar {
    background: #f3f4f6;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .toolbar-buttons {
    display: flex;
    gap: 0.5rem;
  }
  
  .toolbar-btn {
    width: 32px;
    height: 32px;
    background: #e5e7eb;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 0.9rem;
  }
  
  .address-bar {
    flex: 1;
    height: 32px;
    background: var(--white);
    border: 1px solid #d1d5db;
    border-radius: 6px;
    margin: 0 1rem;
  }
  
  .menu-btn {
    width: 32px;
    height: 32px;
    background: #e5e7eb;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
  }
  
  .email-compose {
    padding: 2rem;
  }
  
  .email-field {
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f3f4f6;
  }
  
  .field-label {
    color: #9ca3af;
    font-size: 0.9rem;
    width: 70px;
    flex-shrink: 0;
  }
  
  .field-value {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
  }
  
  .email-body {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
  
  .email-greeting {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }
  
  .email-paragraph {
    color: var(--dark-text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .email-closing {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
  
  .email-signature {
    margin-bottom: 2rem;
  }
  
  .email-signature p {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.3rem;
    line-height: 1.4;
  }
  
  .email-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #f3f4f6;
    background: #f9fafb;
    margin: 0 -2rem -2rem -2rem;
    padding: 1rem 2rem;
  }
  
  .email-attachments {
    display: flex;
    gap: 1rem;
  }
  
  .attachment-icon {
    font-size: 1.2rem;
    color: #6b7280;
  }
  
  .send-button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .send-button:hover {
    background: #5a82d4;
    transform: translateY(-1px);
  }
  
  .guide-link {
    text-align: center;
    margin-top: 2rem;
  }
  
  .guide-link p {
    color: var(--dark-text);
    font-size: 1.1rem;
    font-weight: 600;
  }
  
  /* Responsive design for email preview */
  @media (max-width: 768px) {
    .email-mockup {
      margin: 0 -1rem;
      border-radius: 12px;
    }
  
    .email-compose {
      padding: 1.5rem;
    }
  
    .email-toolbar {
      padding: 0.6rem 1rem;
    }
  
    .toolbar-buttons {
      display: none;
    }
  
    .address-bar {
      margin: 0;
    }
  
    .email-footer {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
  
    .email-preview-title {
      font-size: 1.3rem;
      padding: 0 1rem;
    }
  }
  
  /* Cover Letter Formatting Tips Section */
  .formatting-tips-section {
    padding: 80px 0;
    background: #f8fafc;
  }
  
  .formatting-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
  }
  
  .tip-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
  }
  
  .tip-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  
  .tip-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
  }
  
  .tip-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .tip-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .tip-description {
    font-size: 1rem;
    color: var(--gray-text);
    line-height: 1.7;
    margin: 0;
  }
  
  .pro-tip {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
  }
  
  .pro-tip-icon {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.2rem;
  }
  
  .pro-tip-content {
    flex: 1;
  }
  
  .pro-tip-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
  }
  
  .pro-tip-text {
    font-size: 1rem;
    color: var(--dark-text);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
  }
  
  /* Responsive design for formatting tips section */
  @media (max-width: 768px) {
    .formatting-tips-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
    .tip-item {
      padding: 1.5rem;
      text-align: center;
    }
  
    .tip-title {
      font-size: 1.2rem;
    }
  
    .pro-tip {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
      padding: 1.5rem;
    }
  
    .pro-tip-icon {
      margin-top: 0;
    }
  
    .formatting-tips-section {
      padding: 60px 0;
    }
  }
  
  /* Key Takeaways Section */
  .key-takeaways-section {
    padding: 80px 0;
    background: var(--white);
  }
  
  .takeaways-list {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .takeaway-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
  }
  
  .takeaway-item:last-child {
    border-bottom: none;
  }
  
  .takeaway-bullet {
    background: var(--primary-color);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
  }
  
  .takeaway-text {
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.7;
    margin: 0;
    flex: 1;
  }
  
  /* Responsive design for key takeaways section */
  @media (max-width: 768px) {
    .takeaway-item {
      padding: 0.8rem 0;
    }
  
    .takeaway-bullet {
      width: 20px;
      height: 20px;
      font-size: 0.7rem;
      margin-right: 0.8rem;
    }
  
    .takeaway-text {
      font-size: 1rem;
    }
  
    .key-takeaways-section {
      padding: 60px 0;
    }
  }
  
  /* What is a Cover Letter Section */
  .what-is-cover-letter-section {
    padding: 80px 0;
    background: var(--white);
  }
  
  .cover-letter-definition {
    max-width: 800px;
    margin: 0 auto 2rem;
  }
  
  .cover-letter-definition p {
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .accomplishments-list {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .accomplishment-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }
  
  .accomplishment-check {
    background: #10b981;
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
  }
  
  .accomplishment-text {
    font-size: 1.1rem;
    color: var(--primary-color);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
  }
  
  /* Unlock the Door Section */
  .unlock-door-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  }
  
  .unlock-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .unlock-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .opportunity-text {
    color: #ef4444;
  }
  
  .unlock-description {
    font-size: 1.2rem;
    color: var(--dark-text);
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  
  .unlock-cta-button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(116, 144, 231, 0.3);
  }
  
  .unlock-cta-button:hover {
    background: #5a82d4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(116, 144, 231, 0.4);
  }
  
  .unlock-visual {
    position: relative;
  }
  
  .cover-letter-preview {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .letter-header {
    text-align: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 1rem;
  }
  
  .header-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  
  .header-contact {
    color: var(--gray-text);
    font-size: 0.9rem;
  }
  
  .letter-date {
    margin-bottom: 1rem;
    color: var(--dark-text);
  }
  
  .letter-recipient {
    margin-bottom: 1rem;
    color: var(--dark-text);
  }
  
  .letter-salutation {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .letter-content p {
    color: var(--dark-text);
    margin: 0;
  }
  
  .visual-elements {
    position: absolute;
    top: -20px;
    right: -20px;
  }
  
  .cursor-icon,
  .pencil-icon {
    font-size: 2rem;
    margin: 0.5rem;
    opacity: 0.7;
  }
  
  /* What to Include Section */
  .what-to-include-section {
    padding: 80px 0;
    background: var(--white);
  }
  
  .inline-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
  }
  
  .inline-link:hover {
    color: #5a82d4;
  }
  
  .include-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .include-list {
    margin-bottom: 2rem;
  }
  
  .include-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
  }
  
  .include-item:last-child {
    border-bottom: none;
  }
  
  .include-check {
    background: var(--primary-color);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
  }
  
  .include-text {
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.7;
    margin: 0;
  }
  
  .include-text strong {
    color: var(--dark-text);
  }
  
  .template-guide {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
  }
  
  .guide-tip {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .tip-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
  }
  
  .guide-tip p {
    font-size: 1rem;
    color: var(--dark-text);
    margin: 0;
    line-height: 1.6;
  }
  
  /* Template Visual Section */
  .template-visual-section {
    padding: 80px 0;
    background: #f8fafc;
  }
  
  .template-breakdown {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
    position: relative;
  }
  
  /* Connecting lines */
  .template-breakdown::before {
    content: "";
    position: absolute;
    left: calc(50% - 2rem);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      var(--primary-color) 10%,
      var(--primary-color) 20%,
      #f59e0b 30%,
      #f59e0b 50%,
      var(--primary-color) 60%,
      #10b981 70%,
      #f59e0b 80%,
      #ef4444 90%,
      var(--primary-color) 100%
    );
    opacity: 0.3;
    z-index: 1;
  }
  
  .breakdown-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  
  .breakdown-subtitle {
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 2rem;
  }
  
  .breakdown-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    min-height: 600px;
    justify-content: space-between;
  }
  
  .breakdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
  }
  
  /* Individual connecting lines */
  .breakdown-item::after {
    content: "";
    position: absolute;
    right: -2rem;
    top: 50%;
    width: 30px;
    height: 2px;
    transform: translateY(-50%);
    z-index: 1;
  }
  
  .breakdown-item:nth-child(1)::after,
  .breakdown-item:nth-child(2)::after {
    background: var(--primary-color);
  }
  
  .breakdown-item:nth-child(3)::after,
  .breakdown-item:nth-child(4)::after,
  .breakdown-item:nth-child(5)::after {
    background: #f59e0b;
  }
  
  .breakdown-item:nth-child(6)::after {
    background: var(--primary-color);
  }
  
  .breakdown-item:nth-child(7)::after {
    background: #10b981;
  }
  
  .breakdown-item:nth-child(8)::after {
    background: #f59e0b;
  }
  
  .breakdown-item:nth-child(9)::after {
    background: #ef4444;
  }
  
  .breakdown-item:nth-child(10)::after {
    background: var(--primary-color);
  }
  
  .breakdown-item:hover {
    border-left-color: var(--primary-color);
    transform: translateX(5px);
  }
  
  .item-number {
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
  }
  
  /* Individual number colors matching template sections */
  .breakdown-item:nth-child(1) .item-number,
  .breakdown-item:nth-child(2) .item-number {
    background: var(--primary-color); /* Header sections */
  }
  
  .breakdown-item:nth-child(3) .item-number,
  .breakdown-item:nth-child(4) .item-number,
  .breakdown-item:nth-child(5) .item-number {
    background: #f59e0b; /* Recipient info sections */
  }
  
  .breakdown-item:nth-child(6) .item-number {
    background: var(--primary-color); /* Salutation */
  }
  
  .breakdown-item:nth-child(7) .item-number {
    background: #10b981; /* Opening paragraph */
  }
  
  .breakdown-item:nth-child(8) .item-number {
    background: #f59e0b; /* Body paragraph */
  }
  
  .breakdown-item:nth-child(9) .item-number {
    background: #ef4444; /* Closing paragraph */
  }
  
  .breakdown-item:nth-child(10) .item-number {
    background: var(--primary-color); /* Sign-off */
  }
  
  .item-text {
    font-size: 1rem;
    color: var(--dark-text);
    font-weight: 500;
  }
  
  .template-preview {
    position: sticky;
    top: 2rem;
  }
  
  .template-document {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    font-family: "Times New Roman", serif;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    display: flex;
    flex-direction: column;
    height: fit-content;
    min-height: 600px;
  }
  
  .template-header {
    text-align: center;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    flex-shrink: 0;
  }
  
  .template-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
  }
  
  .template-contact {
    font-size: 0.8rem;
    opacity: 0.9;
  }
  
  .template-date {
    margin-bottom: 1rem;
    color: var(--dark-text);
    flex-shrink: 0;
    padding: 0.5rem 0;
  }
  
  .template-recipient {
    margin-bottom: 1rem;
    background: #fef3c7;
    padding: 0.8rem;
    border-radius: 6px;
    flex-shrink: 0;
  }
  
  .recipient-info {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.85rem;
  }
  
  .recipient-company,
  .recipient-address,
  .recipient-city,
  .recipient-email {
    font-size: 0.8rem;
    margin: 0.2rem 0;
  }
  
  .template-salutation {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    flex-shrink: 0;
    padding: 0.5rem 0;
  }
  
  .template-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .template-body p {
    margin: 0;
    color: var(--dark-text);
    text-align: justify;
    font-size: 0.85rem;
    line-height: 1.3;
  }
  
  .opening-paragraph {
    background: #dcfce7;
    padding: 0.8rem;
    border-radius: 6px;
    border-left: 4px solid #10b981;
    flex: 1;
    min-height: 60px;
    display: flex;
    align-items: center;
  }
  
  .body-paragraph {
    background: #fef3c7;
    padding: 0.8rem;
    border-radius: 6px;
    border-left: 4px solid #f59e0b;
    flex: 1.5;
    min-height: 80px;
    display: flex;
    align-items: center;
  }
  
  .closing-paragraph {
    background: #fecaca;
    padding: 0.8rem;
    border-radius: 6px;
    border-left: 4px solid #ef4444;
    flex: 1;
    min-height: 60px;
    display: flex;
    align-items: center;
  }
  
  .template-signoff {
    text-align: left;
    margin-top: 1rem;
    flex-shrink: 0;
  }
  
  .signoff-text {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
  }
  
  .signoff-name {
    font-weight: 600;
    color: var(--dark-text);
  }
  
  /* Responsive design for how-to-write sections */
  @media (max-width: 768px) {
    .unlock-content {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
    }
  
    .unlock-title {
      font-size: 2rem;
    }
  
    .template-breakdown {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .template-breakdown::before {
      display: none;
    }
  
    .breakdown-item::after {
      display: none;
    }
  
    .template-preview {
      position: static;
    }
  
    .template-document {
      padding: 1.5rem;
      font-size: 0.85rem;
    }
  
    .accomplishment-item,
    .include-item {
      flex-direction: column;
      text-align: center;
      gap: 0.5rem;
    }
  
    .accomplishment-check,
    .include-check {
      margin: 0 auto 0.5rem auto;
    }
  
    .breakdown-item {
      padding: 0.6rem;
    }
  
    .what-is-cover-letter-section,
    .unlock-door-section,
    .what-to-include-section,
    .template-visual-section,
    .how-to-write-steps-section {
      padding: 60px 0;
    }
  }
  
  /* How to Write Steps Section */
  .how-to-write-steps-section {
    padding: 80px 0;
    background: #f8fafc;
  }
  
  .step-header {
    display: flex;
    align-items: center;
    margin: 4rem auto 2rem auto;
    gap: 1.5rem;
    max-width: 800px;
  }
  
  .step-header:first-of-type {
    margin-top: 0;
  }
  
  .step-number {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    min-width: 120px;
    text-align: center;
    white-space: nowrap;
  }
  
  .step-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
  }
  
  .step-content {
    margin: 0 auto;
    max-width: 800px;
  }
  
  .step-description {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  
  .step-additional {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.7;
    margin: 2rem 0;
  }
  
  .step-checklist,
  .step-tasks {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
  }
  
  .checklist-item,
  .task-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  
  .checklist-item:last-child,
  .task-item:last-child {
    margin-bottom: 0;
  }
  
  .checklist-check,
  .task-check {
    background: var(--primary-color);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
  }
  
  .checklist-text,
  .task-text {
    font-size: 1rem;
    color: var(--dark-text);
    line-height: 1.6;
    margin: 0;
  }
  
  .header-example {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
  }
  
  .example-header {
    background: #1e3a8a;
    color: var(--white);
    padding: 1.5rem 2rem;
    text-align: center;
    border-radius: 8px;
  }
  
  .header-name {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
  }
  
  .header-contact {
    font-size: 1rem;
    color: #e2e8f0;
    letter-spacing: 1px;
  }
  
  .recipient-example {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
  }
  
  .example-document {
    background: var(--white);
    padding: 2rem;
    font-family: "Arial", sans-serif;
    line-height: 1.5;
  }
  
  .document-header {
    background: #6b7280;
    color: var(--white);
    padding: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    border-radius: 8px;
    position: relative;
  }
  
  .logo-section {
    background: var(--white);
    color: #6b7280;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem auto;
  }
  
  .name-section {
    font-size: 2.5rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 2px;
  }
  
  .contact-line {
    color: #3b82f6;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .date-section {
    color: #3b82f6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .recipient-details {
    color: #3b82f6;
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .recipient-name {
    margin-bottom: 0.3rem;
  }
  
  .company-name {
    margin-bottom: 0.3rem;
  }
  
  .company-address {
    margin-bottom: 0.3rem;
  }
  
  .company-city {
    margin-bottom: 0;
  }
  
  .step-tip {
    background: #f0f9ff;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-left: 4px solid #3b82f6;
  }
  
  .tip-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
  }
  
  .tip-text {
    font-size: 1rem;
    color: var(--dark-text);
    line-height: 1.6;
    margin: 0;
  }
  
  .greeting-examples {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .good-examples,
  .bad-examples {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .good-examples {
    border-left: 4px solid var(--primary-color);
  }
  
  .bad-examples {
    border-left: 4px solid #ef4444;
  }
  
  .example-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
  }
  
  .example-item:last-child {
    margin-bottom: 0;
  }
  
  .example-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    flex-shrink: 0;
  }
  
  .example-icon.good {
    background: var(--primary-color);
    color: var(--white);
  }
  
  .example-icon.bad {
    background: #ef4444;
    color: var(--white);
  }
  
  .example-text {
    font-size: 1.1rem;
    color: var(--dark-text);
    margin: 0;
    font-weight: 500;
  }
  
  .introduction-subtopics {
    margin: 2rem 0;
  }
  
  .subtopic-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
  }
  
  .subtopic-item:last-child {
    margin-bottom: 0;
  }
  
  .subtopic-icon {
    background: var(--primary-color);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.2rem;
  }
  
  .subtopic-content {
    flex: 1;
  }
  
  .subtopic-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0 0 0.5rem 0;
  }
  
  .subtopic-description {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
  }
  
  .body-paragraph-strategies {
    margin: 2rem 0;
  }
  
  .strategy-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
  }
  
  .strategy-item:last-child {
    margin-bottom: 0;
  }
  
  .strategy-icon {
    background: var(--primary-color);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.2rem;
  }
  
  .strategy-content {
    flex: 1;
  }
  
  .strategy-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0 0 0.5rem 0;
  }
  
  .strategy-description {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
  }
  
  .closing-elements {
    margin: 2rem 0;
  }
  
  .closing-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
  }
  
  .closing-item:last-child {
    margin-bottom: 0;
  }
  
  .closing-icon {
    background: var(--primary-color);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.2rem;
  }
  
  .closing-content {
    flex: 1;
  }
  
  .closing-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0 0 0.5rem 0;
  }
  
  .closing-description {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
  }
  
  .closing-tip {
    background: #f0f9ff;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-left: 4px solid #3b82f6;
  }
  
  .signoff-sections {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .signoff-section {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .signoff-section.good {
    border-left: 4px solid var(--primary-color);
  }
  
  .signoff-section.bad {
    border-left: 4px solid #ef4444;
  }
  
  .signoff-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0 0 1.5rem 0;
  }
  
  .signoff-examples {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .signoff-example {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .signoff-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    flex-shrink: 0;
  }
  
  .signoff-icon.good {
    background: var(--primary-color);
    color: var(--white);
  }
  
  .signoff-icon.bad {
    background: #ef4444;
    color: var(--white);
  }
  
  .signoff-phrase {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-text);
  }
  
  .signoff-tip {
    background: #f0f9ff;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-left: 4px solid #3b82f6;
  }
  
  /* Writing a Cover Letter That Stands Out Section */
  .standout-section {
    padding: 80px 0;
    background: #f8fafc;
  }
  
  .standout-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }
  
  .feature-icon {
    background: var(--primary-color);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.2rem;
  }
  
  .feature-content {
    flex: 1;
  }
  
  .feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0 0 0.8rem 0;
  }
  
  .feature-description {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
  }
  
  /* Responsive Design for Features */
  @media (min-width: 768px) {
    .standout-features {
      grid-template-columns: repeat(2, 1fr);
      gap: 2.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .standout-features {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .feature-item {
      max-width: 800px;
      margin: 0 auto;
    }
  }
  
  /* Key Takeaways Section */
  .key-takeaways-section {
    padding: 80px 0;
    background: var(--white);
  }
  
  .takeaways-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  
  .takeaway-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .takeaway-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }
  
  .takeaway-icon {
    background: var(--primary-color);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.2rem;
  }
  
  .takeaway-text {
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
  }
  
  /* Responsive adjustments for takeaways */
  @media (max-width: 768px) {
    .takeaway-item {
      padding: 1.5rem;
      gap: 0.8rem;
    }
  
    .takeaway-text {
      font-size: 1rem;
    }
  }
  
  /* Additional responsive adjustments for steps */
  @media (max-width: 768px) {
    .step-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
  
    .step-title {
      font-size: 1.5rem;
    }
  
    .step-checklist,
    .step-tasks {
      padding: 1.5rem;
    }
  }