/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #f00606;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }
  
  .hire-me-section {
    background-color: #fcf5f5;
    padding: 60px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .container {
    background-color: #772d2d;
    border-radius: 15px;
    padding: 40px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transform: translateZ(0);
    transition: transform 0.3s ease-in-out;
  }
  
  .container:hover {
    transform: translateZ(15px);
  }
  
  .details {
    text-align: center;
    margin-bottom: 40px;
  }
  
  h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #fff;
  }
  
  p {
    color: #fff;
    font-size: 1.1em;
    margin-bottom: 10px;
  }
  
  .hire-me-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .input-group {
    display: flex;
    flex-direction: column;
  }
  
  label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #fcf6f6;
  }
  
  input, textarea {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
  }
  
  input:focus, textarea:focus {
    border-color: #4e73df;
    outline: none;
  }
  
  textarea {
    resize: vertical;
  }
  
  .submit-btn {
    background-color: #4e73df;
    color: white;
    border: none;
    margin-left: 200px;
    margin-top: 20px;
    padding: 12px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease;
  }
  
  .submit-btn:hover {
    background-color: #365fdd;
    transform: translateY(-5px);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .container {
      padding: 20px;
    }
  
    h1 {
      font-size: 2em;
    }
    
    .submit-btn {
      padding: 10px;
    }
  }
  
  @media (max-width: 480px) {
    h1 {
      font-size: 1.6em;
    }
  
    .hire-me-form {
      gap: 15px;
    }
  
    .submit-btn {
      padding: 10px;
    }
  }
  