:root {
    /* YOUR BRAND COLOR */
    --primary: #884848;
    --dark: #1f1f1f;
    --light: #f6f6f6;
  }
  
  * {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: var(--light);
    color: #333;
  }
  
  .contact-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
  }
  
  .contact-container {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: #fff;
    padding: 60px;
  }
  
  /* LEFT SIDE */
  .contact-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary);
  }
  
  .contact-info p {
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .info-block span {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
  }
  
  .info-block p {
    margin: 5px 0 25px;
  }
  
  /* RIGHT SIDE */
  .contact-form form {
    width: 100%;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  input,
  textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
  }
  
  input:focus,
  textarea:focus {
    outline: none;
    border-color: var(--primary);
  }
  
  #button {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: #fff;
    border: none;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    cursor: pointer;
  }
  
  button:hover {
    opacity: 0.9;
  }
  
  /* RESPONSIVE */
  @media (max-width: 900px) {
    .contact-container {
      grid-template-columns: 1fr;
      padding: 40px 30px;
    }
  }
  