* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #0a3c78, #7fc0ff);
    color: white;
  }
  
  /* Desktop container */
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    padding: 40px;
    position: relative;
  }
  
  .left, .right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .box {
    border: 2px solid white;
    background: black;
    color: white;
    padding: 15px;
    margin: 10px;
    text-align: center;
    font-family: "Exo", sans-serif;
  }
  
  .title {
    letter-spacing: 5px;
    font-weight: bold;
    border: 2px solid white;
    background: black;
    padding: 5px 10px;
    margin-bottom: 10px;
    width: 300px;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
  }
  
  .address, .social {
    width: 300px;
  }
  
  .form-container {
    background: black;
    padding: 20px;
    border: 2px solid white;
    width: 400px;
    text-align: left;
  }
  
  .form-container label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    font-family: 'Exo', sans-serif;
  }
  
  .form-container input, 
  .form-container textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: none;
    outline: none;
    font-family: 'Exo', sans-serif;
  }
  
  .form-container button {
    background: white;
    color: black;
    font-weight: bold;
    padding: 10px;
    margin-top: 15px;
    width: 100%;
    cursor: pointer;
    border: none;
    transition: 0.3s;
    font-family: 'Exo', sans-serif;
  }
  
  .form-container button:hover {
    background: #ddd;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }
  
  .social-icons a {
    color: white;
    font-size: 20px;
    text-decoration: none;
  }
  
  .star {
    font-size: 70px;
    color: white;
    margin: 20px;
    border-radius: 50%;
    padding: 10px;
    display: inline-block;
  }
  
  #message {
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
  }
  
  /* Diagonal arrows (desktop only) */
  .arrow-up, .arrow-down {
    position: absolute;
    width: 250px;
    height: 2px;
    background: white;
  }
  
  .arrow-up {
    left: 250px;
    top: 80px;
    transform: rotate(-30deg);
  }
  
  .arrow-up::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid white;
  }
  
  .arrow-down {
    left: 250px;
    bottom: 80px;
    transform: rotate(30deg);
  }
  
  .arrow-down::after {
    content: '';
    position: absolute;
    left: 0;
    top: -4px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 10px solid white;
  }
  
  /* 📱 Mobile (iPhones) */
  @media (max-width: 600px) {
    .container {
      flex-direction: column;
      gap: 20px;
      padding: 20px;
    }
  
    .form-container, .title, .address, .social {
      width: 100%;
      max-width: 350px;
    }
  
    .form-container {
      text-align: center;
    }
  
    .arrow-up, .arrow-down {
      display: none; /* hide arrows on mobile */
    }
  }
  
  /* 💻 Tablets */
  @media (min-width: 601px) and (max-width: 1024px) {
    .container {
      flex-direction: column;
      gap: 30px;
    }
  
    .form-container, .title, .address, .social {
      width: 80%;
      max-width: 500px;
    }
  
    .arrow-up, .arrow-down {
      display: none; /* optional: hide arrows also on tablets */
    }
  }