/* === 服务板块 === */
    .services {
      position: relative;
      z-index: 10;
      padding: 20px 10px; 
      border-top: 1px solid rgba(200, 160, 80, 0.15);
      border-bottom: 1px solid rgba(200, 160, 80, 0.15);
    }

    .section-title {
      text-align: center;
      font-size: 40px;
      
      letter-spacing: 8px;
      margin-bottom: 12px;
    }

    .section-sub {
      text-align: center;
      font-size: 14px;
      color: #c8a050;
      letter-spacing: 4px;
      opacity: 0.7;
      margin-bottom: 10px;
    }

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

    .service-card {
      background: #fff;
      border: 1px solid rgba(200, 160, 80, 0.2);
      padding: 40px 30px;
      text-align: center;
      transition: all 0.4s;
      border-radius: 20px;
      cursor: pointer;
    }

    .service-card:hover {
      border-color: rgba(200, 160, 80, 0.6);
      background: rgba(40, 28, 8, 0.9);
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(200, 160, 80, 0.15);
      color: #a89060;
    }

    .service-icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 20px;
    }

    .service-name {
      font-size: 20px;      
      letter-spacing: 4px;
      margin-bottom: 14px;
    }

    

    .service-desc {
      font-size: 13px;
      color: #a89060;
      line-height: 2;
      letter-spacing: 1px;
    }

    /* === 装饰线 === */
    .section-divider {
      display: flex;
      align-items: center;
      gap: 20px;
      justify-content: center;
      margin: 10px 0 50px;
    }

    .section-divider span {
      width: 80px;
      height: 1px;
      background: linear-gradient(90deg, transparent, #c8a050);
    }

    .section-divider span:last-child {
      background: linear-gradient(90deg, #c8a050, transparent);
    }

    .section-divider i {
      font-style: normal;
      color: #c8a050;
      font-size: 18px;
    }

.mandate {
text-align: center;
}
.btn-royal {
    display: inline-block;
    margin-top: 1.8rem;
    background: transparent;
    border: 1.5px solid #ddb76b;
    padding: 0.7rem 2.2rem;
    border-radius: 48px;
    color: #666;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    letter-spacing: 1px;
}