
    :root {
      --uv-purple: #6a0dad;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: #fff;
    }

    header {
      background-color: var(--uv-purple);
      color: white;
      height: 120px;
      padding: 1rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .logo img {
      width: 250px;
      height: 80px;
      object-fit: contain;
    }

    nav {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      font-size: 16px;
    }

    h1.section-title {
      text-align: center;
      font-size: 2.5rem;
      color: var(--uv-purple);
      margin: 60px 0 40px;
    }

    .services-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      padding: 40px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .service-box {
      background: white;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      border-radius: 16px;
      padding: 30px 20px;
      flex: 1 1 250px;
      max-width: 300px;
      text-align: center;
      transition: transform 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .service-box:hover {
      transform: translateY(-8px);
    }

    .service-icon {
      font-size: 40px;
      color: var(--uv-purple);
      margin-bottom: 20px;
    }

    .service-box h3 {
      color: #333;
      margin-bottom: 10px;
    }

    .service-box p {
      font-size: 14px;
      color: #555;
    }

    footer {
      background: var(--uv-purple);
      color: white;
      padding: 20px;
      text-align: center;
      margin-top: 60px;
    }