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

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

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

    header h1 {
      font-size: 1.75rem;
      margin-bottom: 0.5rem;
    }

    header p {
      opacity: 0.9;
      font-size: 1rem;
    }

    .hero {
      padding: 2rem 1rem;
      text-align: center;
    }

    .hero h2 {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      color: #2c3e50;
    }

    .cta-button {
      display: block;
      width: 100%;
      max-width: 300px;
      margin: 0.5rem auto;
      padding: 1rem;
      background: #667eea;
      color: white;
      border: none;
      border-radius: 25px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.2s;
    }

    .cta-button:active {
      transform: scale(0.98);
    }

    .secondary {
      background: white;
      color: #667eea;
      border: 2px solid #667eea;
    }

    .services {
      padding: 2rem 1rem;
      background: white;
    }

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

    .service-grid {
      display: grid;
      gap: 1rem;
    }

    .service-card {
      background: #f8f9fa;
      padding: 1.5rem;
      border-radius: 12px;
      text-align: center;
      border: 1px solid #e9ecef;
    }

    .service-card h4 {
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
      color: #667eea;
    }

    .service-card p {
      font-size: 1.5rem;
      font-weight: bold;
      color: #2c3e50;
      margin-bottom: 0.25rem;
    }

    .service-card span {
      color: #6c757d;
      font-size: 0.9rem;
    }

    .contact {
      padding: 2rem 1rem;
    }

    .contact h3 {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      text-align: center;
      color: #2c3e50;
    }

    .contact-button {
      display: block;
      margin: 0.75rem 0;
      padding: 1rem;
      background: white;
      border: 2px solid #667eea;
      border-radius: 25px;
      text-decoration: none;
      color: #667eea;
      font-weight: 600;
      text-align: center;
      transition: transform 0.2s;
    }

    .contact-button:active {
      transform: scale(0.98);
    }

    footer {
      text-align: center;
      padding: 2rem 1rem;
      color: #6c757d;
      font-size: 0.9rem;
    }

    @media (max-width: 480px) {
      .service-grid {
        grid-template-columns: 1fr;
      }
    }
