main{
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 20px;
}
  body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  .contact-info {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
  }

  .contact-info h2 {
    color: #2c3e50;
    margin-bottom: 20px;
  }

  .contact-info p {
    font-size: 1.2rem;
    margin: 10px 0;
  }

  .contact-info a {
    color: #27ae60;
    text-decoration: none;
    font-weight: bold;
  }

  .contact-info a:hover {
    text-decoration: underline;
  }