* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }
  
  body {
    color: #111;
    background: #fafafa;
    line-height: 1.6;
  }
  
  .container {
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
  }
  
  header {
    text-align: center;
    padding: 80px 0;
    background: white;
    border-bottom: 1px solid #eee;
  }
  
  header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
  
  header .subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
  }
  
  .cta-btn {
    display: inline-block;
    padding: 12px 24px;
    background: black;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
  }
  
  .cta-btn:hover {
    background: #333;
  }
  
  .features {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 60px 0;
  }
  
  .feature {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    flex: 1;
    text-align: center;
  }
  
  .feature h3 {
    margin-bottom: 10px;
  }
  
  .contact {
    padding: 60px 0;
    background: white;
    border-top: 1px solid #eee;
  }
  
  .contact h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  form input, form textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  form textarea {
    min-height: 100px;
    resize: vertical;
  }
  
  form button {
    padding: 12px;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-size: 1rem;
  }
  
  form button:hover {
    background: #333;
  }
  
  .form-message {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
  }
  
  footer {
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    color: #777;
  }
  