.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color:#673ab7;
    color: white;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    transition: transform 0.5s;
    animation: slideDown 1s ease;
  }

  .container:hover {
    transform: rotateY(-10deg) rotateX(-5deg);
  }

  .info-container {
    flex: 1;
    padding: 40px;
  }

  h1 {
    font-size: 36px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  }

  p {
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
  }

  .map-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  }

  .map {
    width: 100%;
    height: 100%;
    border: 0;
  }

  .contact-form {
    margin-top: 30px;
    display: none;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    font-weight: bold;
  }

  .form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s;
  }

  .form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #512da8;
  }

  .submit-btn {
    background-color: #512da8;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .submit-btn:hover {
    background-color: #0056b3;
  }
  @media (max-width: 768px) {
  .container {
    max-width: 80%; 
    margin: 50px auto; 
    padding: 20px;
    background-color: #673ab7;
    color: white;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column; 
    transition: transform 0.5s;
    animation: slideDown 1s ease;
  }
  
  .container:hover {
    transform: none;
  }
  
  .info-container {
    padding: 20px; 
  }
  
  h1 {
    font-size: 24px;
    margin-bottom: 20px; 
  }
  
  p {
    font-size: 16px; 
    line-height: 1.5; 
    text-align: left; 
  }
  
  .map-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 300px; 
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  }
  
  .map {
    width: 100%;
    height: 100%;
    border: 0;
  }
  
  .contact-form {
    margin-top: 20px; 
  }
  
  .form-group {
    margin-bottom: 15px; 
  }
  
  .form-group label {
    display: block;
    font-weight: bold;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #512da8;
  }
  
  .submit-btn {
    background-color: #512da8;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .submit-btn:hover {
    background-color: #0056b3;
  }
}  