
    html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(to right, #fefcea, #f1da36);
      color: #333;
    }

    body {
      display: flex;
      flex-direction: column;
    }

    main {
      flex: 1;
    }

    header {
      background-color: #151515;
      color: #fff;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    header h1 {
      font-size: 1.8rem;
      letter-spacing: 1px;
      font-weight: 700;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 1.5rem;
    }

    nav ul li a {
      text-decoration: none;
      color: #fff;
      transition: color 0.3s ease;
    }

    nav ul li a:hover {
      color: #f1da36;
    }

    .hero {
      padding: 5rem 2rem;
      text-align: center;
      background: #fff6d6;
      color: #151515;
    }

    .hero h2 {
      font-size: 2.8rem;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .services {
      padding: 4rem 2rem;
      background-color: #fff;
    }

    .services h3 {
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 2rem;
      color: #222;
    }

    .service-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
    }

    .service-box {
      flex: 1 1 260px;
      background: #fafafa;
      padding: 1.5rem;
      border-radius: 10px;
      border: 1px solid #e1e1e1;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
    }

    .service-box:hover {
      transform: translateY(-5px);
    }

    .service-box h4 {
      color: #e67e22;
      margin-bottom: 0.8rem;
    }

    .contact {
      background: #151515;
      color: #fff;
      text-align: center;
      padding: 3rem 2rem;
    }

    .contact h3 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }

    .contact a {
      color: #f1da36;
      text-decoration: none;
      font-weight: bold;
    }

    footer {
      background: #000;
      color: #ccc;
      text-align: center;
      padding: 1rem;
      font-size: 0.9rem;
    }
