    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Public Sans', sans-serif;
    }

    body {
      color: #333;
    }

    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 2rem;
      background: #6200EE;
      color: #fff;
    }
    header .logo {
      display: flex;
      align-items: center;
      font-size: 1.5rem;
      font-weight: 700;
    }
    header .logo img {
      width: 40px;
      margin-right: 0.5rem;
    }

    .logo a {
      text-decoration: none;
      color: inherit;
      display: flex;
      align-items: center;
    }
    
    header nav a {
      margin-left: 1rem;
      text-decoration: none;
      color: #fff;
      font-weight: 600;
    }

    .hero {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      min-height: 70vh;
      padding: 2rem 1rem;
      background: url('../img/hero_data_blend_solutions.jpg') no-repeat center center;
      background-size: cover;
      color: #fff;
    }
    .hero h1 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    .hero p {
      margin-bottom: 2rem;
      max-width: 600px;
      margin: 0 auto 2rem;
    }
    .hero button {
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
      background: #6200EE;
      color: #fff;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }

    .icon-data-services,
    .icon-data-finance,
    .icon-consultancy {
      font-size: 40px;
      color: #d900ee;
      margin-bottom: 1rem;
    }

    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      padding: 2rem;
    }
    .service-item {
      background: #fff;
      padding: 1rem;
      border-radius: 4px;
      text-align: center;
      box-shadow: 0 0 5px rgba(0,0,0,0.1);
    }
    .service-item img {
      max-width: 80px;
      margin-bottom: 1rem;
    }
    .service-item h3 {
      margin-bottom: 0.5rem;
    }

    .why {
      padding: 2rem;
      background: #f0f0f0;
    }
    .why h2 {
      text-align: center;
      margin-bottom: 1.5rem;
    }
    .why p {
      max-width: 700px;
      margin: 0 auto 1rem;
      text-align: center;
    }
    .why ul {
      max-width: 700px;
      margin: 1rem auto;
      list-style: none;
    }
    .why li {
      margin: 0.5rem 0;
    }

    .featured {
      padding: 2rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }
    .featured .app {
      background: #fff;
      padding: 1rem;
      border-radius: 4px;
      text-align: center;
      box-shadow: 0 0 5px rgba(0,0,0,0.1);
    }
    .featured .app img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      margin-bottom: 1rem;
      background: #ddd;
    }

    .contact {
      padding: 2rem;
      text-align: center;
      background: #f9f9f9;
    }
    .contact h2 {
      margin-bottom: 1rem;
    }

    .contact p {
      margin-bottom: 10px;
    }
    .contact form {
      max-width: 500px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
    }
    .contact form input,
    .contact form textarea {
      margin: 0.5rem 0;
      padding: 0.75rem;
      font-size: 1rem;
    }
    .contact form button {
      padding: 1.2rem;
      background: #6200EE;
      color: #fff;
      border: none;
      cursor: pointer;
    }

    .contact-info p {
      margin-bottom: 10px;
    }

    footer {
      text-align: center;
      padding: 1rem;
      background: #6200EE;
      color: #fff;
    }

    @media (max-width: 768px) {
      header {
        flex-direction: column;
        text-align: center;
      }
      header nav {
        margin-top: 1rem;
      }
      .hero h1 {
        font-size: 1.5rem;
      }
    }