:root {
  --background-light: #f9f9fb;
  --card-bg: #ffffff;
  --text-dark: #1e1e25;
  --text-muted: #666;
  --accent: #7048e8;
  --accent-light: #ece7ff;
}

.contact-hero {
    background-color: #f9f9fb;
    padding: 80px 24px 40px;
    text-align: center;
  }
  
  .contact-hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e1e25;
  }
  
  .contact-hero p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .contact-form {
    padding: 40px 24px 80px;
    background-color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-form label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
    resize: vertical;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #7048e8;
    outline: none;
  }
  
  .contact-form button {
    background-color: #7048e8;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #8d5aff;
  }
  