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

      :root {
        --green-primary: #2D8C5A;
        --green-accent: #43A047;
        --green-light: #E8F5E9;
        --green-lighter: #C8E6C9;
        --green-mid: #A5D6A7;
        --text-dark: #333333;
        --text-secondary: #555555;
        --bg-white: #FFFFFF;
        --font-stack: "Noto Sans SC", "Source Han Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
      }

      body {
        font-family: var(--font-stack);
        background: var(--bg-white);
        color: var(--text-dark);
        line-height: 1.8;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        min-width: 1200px;
      }

      /* ==================== Page Container ==================== */
      .page-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 25px 40px 20px;
      }

      /* ==================== Header Section ==================== */
      .header-section {
        text-align: center;
        margin-bottom: 20px;
      }

      .main-title {
        font-size: 36px;
        font-weight: 700;
        color: var(--green-primary);
        margin-bottom: 18px;
        letter-spacing: 1px;
        line-height: 1.5;
      }

      .main-title .highlight {
        color: var(--green-accent);
        position: relative;
        display: inline-block;
      }

      .main-title .highlight::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 0;
        width: 100%;
        height: 8px;
        background: rgba(67, 160, 71, 0.15);
        border-radius: 4px;
        z-index: -1;
      }

      .intro-text {
        font-size: 16px;
        color: var(--text-dark);
        line-height: 2;
        max-width: 860px;
        margin: 0 auto;
        text-align: center;
      }

      /* ==================== Divider ==================== */
      .section-divider {
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, var(--green-primary), var(--green-accent));
        border-radius: 2px;
        margin: 0 auto 20px;
      }

      /* ==================== Parallel Layout ==================== */
      .parallel-section {
        display: flex;
        gap: 50px;
        align-items: flex-start;
      }

      /* ==================== Section Title Common ==================== */
      .section-title {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 36px;
      }

      .section-title .bar {
        width: 4px;
        height: 28px;
        background: var(--green-primary);
        border-radius: 2px;
        flex-shrink: 0;
      }

      .section-title h2 {
        font-size: 24px;
        font-weight: 700;
        color: var(--green-primary);
        letter-spacing: 2px;
      }

      /* ==================== Service Content (Left) ==================== */
      .service-content {
        flex: 1;
        min-width: 0;
      }

      .content-body {
        display: flex;
        gap: 24px;
        position: relative;
      }

      /* Circle decoration with image */
      .circle-decoration {
        flex-shrink: 0;
        width: 180px;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
      }

      .circle-img-wrapper {
        width: 160px;
        height: 160px;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid var(--green-lighter);
        box-shadow: 0 4px 20px rgba(45, 140, 90, 0.12);
        position: relative;
        z-index: 2;
        background: var(--green-light);
      }

      .circle-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .circle-img-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--green-light) 0%, var(--green-lighter) 100%);
      }

      .circle-img-placeholder svg {
        width: 60px;
        height: 60px;
        color: var(--green-primary);
        opacity: 0.6;
      }

      /* Curved line connecting items */
      .curve-line {
        position: absolute;
        left: 80px;
        top: 160px;
        width: 40px;
        height: calc(100% - 160px);
        z-index: 1;
      }

      /* Service list */
      .service-list {
        flex: 1;
        min-width: 0;
      }

      .service-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 5px;
        position: relative;
      }

      .service-item:last-child {
        margin-bottom: 0;
      }

      .service-dot {
        width: 10px;
        height: 10px;
        background: var(--green-accent);
        border-radius: 50%;
        flex-shrink: 0;
        margin-top: 8px;
        position: relative;
      }

      .service-dot::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: rgba(67, 160, 71, 0.15);
      }

      .service-info h3 {
        font-size: 16px;
        font-weight: 700;
        color: var(--green-accent);
        margin-bottom: 4px;
      }

      .service-info p {
        font-size: 14px;
        color: var(--text-secondary);
        line-height: 1.8;
      }

      /* ==================== Service Process (Right) ==================== */
      .service-process {
        flex: 1.1;
        min-width: 0;
      }

      .process-steps {
        display: flex;
        gap: 20px;
        justify-content: center;
      }

      .process-step {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      /* Circle image for process */
      .step-circle {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid var(--green-lighter);
        box-shadow: 0 4px 16px rgba(45, 140, 90, 0.1);
        margin-bottom: 0;
        position: relative;
        z-index: 2;
        background: var(--green-light);
      }

      .step-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .step-circle-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--green-light) 0%, var(--green-lighter) 100%);
      }

      .step-circle-placeholder svg {
        width: 44px;
        height: 44px;
        color: var(--green-primary);
        opacity: 0.6;
      }

      /* Arrow-shaped base */
      .step-arrow {
        width: 100%;
        position: relative;
        z-index: 1;
		padding-top: 15px;
      }

      .arrow-body {
        background: linear-gradient(180deg, var(--green-light) 0%, rgba(200, 230, 201, 0.5) 100%);
        border-radius: 8px 8px 0 0;
        padding: 18px 14px 10px;
        position: relative;
      }

      .arrow-point {
        width: 0;
        height: 0;
        border-left: calc(50% - 2px) solid transparent;
        border-right: calc(50% - 2px) solid transparent;
        border-top: 20px solid rgba(200, 230, 201, 0.5);
        margin: 0 auto;
      }

      .step-title {
        font-size: 16px;
        font-weight: 700;
        color: var(--green-accent);
        margin-bottom: 8px;
        letter-spacing: 1px;
      }

      .step-desc {
        font-size: 13px;
        color: var(--text-secondary);
        line-height: 1.9;
        text-align: left;
      }

      /* Step connectors (arrows between steps) */
      .process-step:not(:last-child)::after {
        content: '';
        display: none;
      }

      /* ==================== Connector arrows between steps ==================== */
      .step-connector {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        flex-shrink: 0;
        align-self: center;
        margin-top: -60px;
      }

      .step-connector svg {
        width: 24px;
        height: 24px;
        color: var(--green-mid);
      }

      /* ==================== Footer ==================== */
      .footer-section {
        text-align: center;
        margin-top: 70px;
        padding-top: 30px;
        border-top: 1px solid var(--green-light);
      }

      .footer-text {
        font-size: 14px;
        color: #999;
        line-height: 2;
      }

      /* ==================== Animations ==================== */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(24px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .animate-in {
        animation: fadeInUp 0.6s ease-out forwards;
        opacity: 0;
      }

      .delay-1 { animation-delay: 0.1s; }
      .delay-2 { animation-delay: 0.2s; }
      .delay-3 { animation-delay: 0.3s; }
      .delay-4 { animation-delay: 0.4s; }
      .delay-5 { animation-delay: 0.5s; }
      .delay-6 { animation-delay: 0.6s; }
      .delay-7 { animation-delay: 0.7s; }
      .delay-8 { animation-delay: 0.8s; }

     

      /* ==================== Responsive (minimal for desktop) ==================== */
      @media (max-width: 1280px) {
        .page-container {
          padding: 20px 30px 20px;
        }
      }

 /* ==================== CTA Section ==================== */
      .cta-section {
        padding: 15px 0;
        background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-accent) 100%);
        position: relative;
        overflow: hidden;
      }

      .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        border-radius: 50%;
      }

      .cta-section::after {
        content: '';
        position: absolute;
        bottom: -50%;
        left: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
        border-radius: 50%;
      }

      .cta-content {
        position: relative;
        z-index: 1;
        text-align: center;
        color: white;
      }

      .cta-content h2 {
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
      }

      .cta-content p {
        font-size: 16px;
        opacity: 0.9;
        margin-bottom: 32px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
      }

      .cta-actions {
        display: flex;
        gap: 16px;
        justify-content: center;
      }

      .btn-white {
        background: white;
        color: var(--green-primary);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
      }

      .btn-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
      }

      .btn-outline-white {
        background: transparent;
        color: white;
        border: 1.5px solid rgba(255, 255, 255, 0.5);
      }

      .btn-outline-white:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: white;
      }
	  
	  .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 28px;
        border-radius: 24px;
        font-size: 14px;
        font-weight: 500;
        border: none;
        cursor: pointer;
        transition: all 0.25s;
        text-decoration: none;
      }
	  
	  .btn svg {
        width: 16px;
        height: 16px;
      }
	  
	  .btn-outline-white {
        background: transparent;
        color: white;
        border: 1.5px solid rgba(255, 255, 255, 0.5);
      }