<style>
  body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background-color: #fff;
    color: #333;
    text-align: center;
  }

  h2 {
    font-size: 32px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .contact-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
  }

  .contact-card {
    flex: 1 1 300px;
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.2s ease;
  }

  .contact-card:hover {
    transform: translateY(-5px);
  }

  .contact-card img {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }

  .contact-card h3 {
    color: #9b1c2c; /* Dark red from screenshot */
    font-size: 20px;
    margin-bottom: 10px;
  }

  .contact-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
  }

  /* Vertical divider effect */
  @media (min-width: 768px) {
    .contact-card:not(:last-child) {
      border-right: 1px solid #ddd;
    }
  }
</style>