 <style>
    body {
      background-color: #2c1f1e;
      color: #fff;
      font-family: 'Georgia', serif;
      margin: 0;
      padding: 0;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 30px;
    }
    .section-title {
      font-size: 48px;
      font-weight: bold;
      margin-bottom: 40px;
    }
    .services-grid {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
    }
    .service-item {
      width: calc(50% - 15px);
    }
    .service-item img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }
    .service-desc {
      margin-top: 15px;
      font-size: 18px;
      color: #ddd;
      line-height: 1.6;
    }
    @media (max-width: 768px) {
      .service-item {
        width: 100%;
      }
    }
  </style>