* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
      line-height: 1.6;
      color: #333;
      background: #f5f5f5;
    }

    header {
      background: #1a1a1a;
      color: white;
      padding: 2rem 1rem;
      text-align: center;
    }

    h1 {
      font-size: 2rem;
      margin-bottom: 0.25rem;
    }

    .hero {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      padding: 3rem 1rem;
      text-align: center;
    }

    .hero h2 {
      font-size: 1.75rem;
      margin-bottom: 0.5rem;
    }

    .hero p {
      margin-bottom: 1.5rem;
      opacity: 0.9;
    }

    button {
      background: #ff6b6b;
      color: white;
      border: none;
      padding: 1rem 2rem;
      font-size: 1rem;
      border-radius: 50px;
      cursor: pointer;
      transition: transform 0.2s;
    }

    button:active {
      transform: scale(0.95);
    }

    section {
      padding: 2rem 1rem;
    }

    h2 {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .service-card {
      background: white;
      margin: 1rem 0;
      padding: 1.5rem;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .service-card h3 {
      color: #667eea;
      margin-bottom: 0.5rem;
    }

    .price {
      font-size: 1.5rem;
      font-weight: bold;
      color: #ff6b6b;
      margin-top: 0.5rem;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    input, select {
      padding: 1rem;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 1rem;
    }

    footer {
      background: #1a1a1a;
      color: white;
      padding: 2rem 1rem;
      text-align: center;
      font-size: 0.9rem;
    }

    footer p {
      margin: 0.5rem 0;
    }

    @media (max-width: 480px) {
      h1 { font-size: 1.75rem; }
      .hero h2 { font-size: 1.5rem; }
    }
