ection-title:root {
    --primary-color: #2c6fbb;
    --secondary-color: #34a4dc;
    --accent-color: #4db6ac;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}


  /* Hero Section - zj_hero */
  #zj_hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    color: white;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
  }
  
  #zj_hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><polygon fill="rgba(255,255,255,0.1)" points="0,100 1000,0 1000,100"/></svg>');
    background-size: cover;
  }
  
  #zj_hero .container {
    position: relative;
    z-index: 2;
  }
  
  #zj_hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease-out;
  }
  
  #zj_hero .lead {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.2s both;
  }
  
  #zj_hero p:last-of-type {
    font-size: 1.1rem;
    opacity: 0.8;
    animation: fadeInUp 0.8s ease-out 0.4s both;
  }
  
  #zj_hero .cta-button {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out 0.6s both;
  }
  
  #zj_hero .cta-button:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
  
  #zj_hero .btn-outline-light {
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.8s both;
  }
  
  #zj_hero .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }


.feature-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    background: white;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-title {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    /* color: var(--primary-color); */
    font-weight: 700;
    font-size: 2.5rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.interface-img {
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 100%;
    height: auto;
}

.highlight-box {
    background: linear-gradient(135deg, #f0f9ff, #e6f7ff);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
    margin: 1.5rem 0;
}

.feature-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.screenshot-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin: 2rem 0;
}

.screenshot-container img {
    transition: transform 0.5s ease;
}

.screenshot-container:hover img {
    transform: scale(1.05);
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(44, 111, 187, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 111, 187, 0.4);
}

.key-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.key-feature-icon {
    background: rgba(52, 164, 220, 0.1);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.workflow-step {
    display: flex;
    margin-bottom: 2.5rem;
    position: relative;
}

.workflow-step::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 50px;
    bottom: -25px;
    width: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.workflow-step:last-child::before {
    display: none;
}

.step-icon {
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 1.5rem;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.workflow-content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.stats-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stats-label {
    font-size: 1rem;
    color: #666;
}

.bg-imaging {
    background: linear-gradient(135deg, #f0f9ff, #e6f7ff);
    border-radius: 1rem;
    padding: 2rem;
}
.bg-light {
    background-color: rgb(237 240 243) !important;
}
.zj_ul {
    list-style-type: disc;
    padding: revert;
    margin: revert;
} 

p {
    margin-bottom: 1rem;
}