    .section {
      padding: 80px 0;
    }

    .section-title {
      font-size: 34px;
      font-weight: 800;
      margin-bottom: 14px;
      text-align: center;
      color: #1f4f29;
    }

    .section-desc {
      font-size: 17px;
      color: #666;
      text-align: center;
      margin-bottom: 42px;
    }

    .top-bar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid #e9e9e9;
    }

    .top-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 72px;
    }

    .logo {
      font-size: 24px;
      font-weight: 900;
      color: #2E7D32;
      letter-spacing: -0.5px;
    }

    .logo span {
      color: #222;
      font-weight: 700;
      margin-left: 4px;
    }

    .top-actions {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 24px;
      border-radius: 999px;
      font-weight: 700;
      transition: 0.25s ease;
      border: 1px solid transparent;
      cursor: pointer;
      white-space: nowrap;
    }

    .btn-primary {
      background: #2E7D32;
      color: #fff;
    }

    .btn-primary:hover {
      background: #256528;
    }

    .btn-outline {
      border-color: #2E7D32;
      color: #2E7D32;
      background: #fff;
    }

    .btn-outline:hover {
      background: #f3fbf4;
    }

    .hero {
      padding: 90px 0 70px;
      background: linear-gradient(180deg, #f6fbf6 0%, #ffffff 100%);
    }

    .hero-wrap {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .hero-badge {
      display: inline-block;
      background: #e9f7ea;
      color: #2E7D32;
      padding: 8px 16px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 14px;
      margin-bottom: 20px;
    }

    .hero h1 {
      font-size: 52px;
      line-height: 1.2;
      font-weight: 900;
      letter-spacing: -1.5px;
      margin-bottom: 18px;
    }

    .hero h1 .point {
      color: #2E7D32;
    }

    .hero p {
      font-size: 18px;
      color: #555;
      margin-bottom: 28px;
    }

    .hero-price {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-bottom: 28px;
    }

    .price-card {
      background: #fff;
      border: 1px solid #e7efe7;
      border-radius: 18px;
      padding: 20px 16px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.04);
      text-align: center;
    }

    .price-card strong {
      display: block;
      font-size: 17px;
      margin-bottom: 8px;
      color: #222;
    }

    .price-card span {
      display: block;
      color: #2E7D32;
      font-size: 22px;
      font-weight: 900;
    }

    .hero-buttons {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .hero-image img {
      min-height: 520px;
      object-fit: cover;
      box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    }

    .service-area {
      background: #2E7D32;
      color: #fff;
      padding: 24px 0;
    }

    .service-area .container {
      display: flex;
      justify-content: center;
      text-align: center;
    }

    .service-area p {
      font-size: 20px;
      font-weight: 700;
    }

    .service-area p span {
      color: #dff6e1;
      font-weight: 400;
      margin-left: 10px;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .feature-box {
      background: #fff;
      border: 1px solid #ececec;
      border-radius: 18px;
      padding: 28px 22px;
      text-align: center;
      box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    }

    .feature-box .icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 16px;
      border-radius: 50%;
      background: #ecf7ed;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
    }

    .feature-box h3 {
      font-size: 20px;
      margin-bottom: 10px;
      color: #1f4f29;
    }

    .feature-box p {
      color: #666;
      font-size: 15px;
    }

    .problem-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .problem-card {
      padding: 26px 20px;
      border-radius: 18px;
      background: #f8faf8;
      border: 1px solid #e9f0e9;
      text-align: center;
    }

    .problem-card h4 {
      font-size: 18px;
      margin-bottom: 8px;
      color: #222;
    }

    .problem-card p {
      font-size: 15px;
      color: #666;
    }

    .before-after {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      align-items: start;
    }

    .ba-card {
      background: #fff;
      border: 1px solid #ececec;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    }

    .ba-label {
      padding: 14px 18px;
      font-size: 18px;
      font-weight: 800;
      color: #fff;
    }

    .before-label {
      background: #777;
    }

    .after-label {
      background: #2E7D32;
    }

    .ba-content {
      padding: 18px;
    }

    .ba-content p {
      margin-top: 14px;
      color: #555;
      font-size: 15px;
    }

    .price-section {
      background: #f6fbf6;
    }

    .price-table {
      max-width: 900px;
      margin: 0 auto;
      background: #fff;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0,0,0,0.06);
      border: 1px solid #e5eee5;
    }

    .price-row {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1.5fr;
      padding: 20px 24px;
      border-bottom: 1px solid #edf2ed;
      align-items: center;
    }

    .price-row:last-child {
      border-bottom: none;
    }

    .price-head {
      background: #2E7D32;
      color: #fff;
      font-weight: 800;
    }

    .price-note {
      text-align: center;
      margin-top: 22px;
      color: #666;
      font-size: 15px;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .step-card {
      background: #fff;
      border: 1px solid #ececec;
      border-radius: 18px;
      padding: 28px 20px;
      text-align: center;
      position: relative;
      box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    }

    .step-num {
      width: 48px;
      height: 48px;
      background: #2E7D32;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      margin: 0 auto 14px;
    }

    .step-card h4 {
      margin-bottom: 8px;
      font-size: 20px;
      color: #1f4f29;
    }

    .step-card p {
      color: #666;
      font-size: 15px;
    }

    .case-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .case-card {
      border-radius: 20px;
      overflow: hidden;
      background: #fff;
      border: 1px solid #ececec;
      box-shadow: 0 10px 28px rgba(0,0,0,0.05);
    }

    .case-card .info {
      padding: 18px;
    }

    .case-card h4 {
      font-size: 20px;
      margin-bottom: 8px;
      color: #1f4f29;
    }

    .case-card p {
      color: #666;
      font-size: 15px;
      margin-bottom: 8px;
    }

    .case-card .price {
      color: #2E7D32;
      font-weight: 900;
      font-size: 20px;
    }

    .review-wrap {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .review-card {
      background: #fff;
      border: 1px solid #ececec;
      border-radius: 18px;
      padding: 28px 22px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    }

    .review-stars {
      color: #f5a623;
      font-size: 18px;
      margin-bottom: 12px;
    }

    .review-card p {
      font-size: 15px;
      color: #555;
      margin-bottom: 12px;
    }

    .review-card strong {
      color: #1f4f29;
      font-size: 15px;
    }

    .cta-section {
      background: linear-gradient(135deg, #2E7D32 0%, #66BB6A 100%);
      color: #fff;
      text-align: center;
      padding: 90px 0;
    }

    .cta-section h2 {
      font-size: 42px;
      line-height: 1.3;
      margin-bottom: 16px;
      font-weight: 900;
    }

    .cta-section p {
      font-size: 18px;
      margin-bottom: 28px;
      color: rgba(255,255,255,0.92);
    }

    .cta-buttons {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-white {
      background: #fff;
      color: #2E7D32;
      font-weight: 800;
    }

    .btn-white:hover {
      background: #f5fff5;
    }

    .btn-dark-outline {
      border: 1px solid rgba(255,255,255,0.7);
      color: #fff;
      background: transparent;
    }

    .btn-dark-outline:hover {
      background: rgba(255,255,255,0.08);
    }

    .contact-box {
      max-width: 900px;
      margin: 0 auto;
      background: #fff;
      border: 1px solid #ececec;
      border-radius: 22px;
      padding: 36px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .contact-grid .full {
      grid-column: 1 / -1;
    }

    .contact-box input,
    .contact-box textarea,
    .contact-box select {
      width: 100%;
      padding: 15px 16px;
      border: 1px solid #dcdcdc;
      border-radius: 12px;
      font-size: 15px;
      outline: none;
    }

    .contact-box textarea {
      min-height: 140px;
      resize: vertical;
    }

    .contact-submit {
      margin-top: 18px;
      text-align: center;
    }

    .footer {
      padding: 40px 0 100px;
      background: #111;
      color: #ddd;
      text-align: center;
    }

    .footer strong {
      display: block;
      color: #fff;
      margin-bottom: 10px;
      font-size: 18px;
    }

    .footer p {
      font-size: 14px;
      color: #aaa;
      margin: 4px 0;
    }

    .mobile-fixed {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 999;
      display: none;
      grid-template-columns: 1fr 1fr;
      background: #fff;
      border-top: 1px solid #ddd;
      box-shadow: 0 -8px 20px rgba(0,0,0,0.08);
    }

    .mobile-fixed a {
      padding: 16px 10px;
      text-align: center;
      font-weight: 800;
      font-size: 16px;
    }

    .mobile-fixed a:first-child {
      background: #2E7D32;
      color: #fff;
    }

    .mobile-fixed a:last-child {
      background: #fff;
      color: #2E7D32;
    }

    @media (max-width: 1024px) {
      .hero-wrap,
      .features-grid,
      .problem-grid,
      .steps,
      .case-grid,
      .review-wrap,
      .before-after,
      .contact-grid {
        grid-template-columns: 1fr 1fr;
      }

      .hero h1 {
        font-size: 42px;
      }

      .hero-price {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .section {
        padding: 60px 0;
      }

      .top-inner {
        min-height: 64px;
      }

      .top-actions {
        display: none;
      }

      .hero {
        padding: 60px 0 40px;
      }

      .hero-wrap,
      .features-grid,
      .problem-grid,
      .steps,
      .case-grid,
      .review-wrap,
      .before-after,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .hero h1 {
        font-size: 34px;
      }

      .section-title {
        font-size: 28px;
      }

      .section-desc {
        font-size: 15px;
      }

      .price-row {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .service-area p {
        font-size: 17px;
      }

      .cta-section h2 {
        font-size: 30px;
      }

      .contact-box {
        padding: 24px 18px;
      }

      .mobile-fixed {
        display: grid;
      }

      .footer {
        padding-bottom: 120px;
      }
    }