
.contact{
  max-width:1100px;
  margin:40px auto 40px; 
  padding:0 20px;
}

/* LAYOUT */
.contact__layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:start;
}
    
.contact__image{
  display: flex;
  justify-content: center;
}

.contact__image img{
  width:100%;
  max-width: 350px;
  height:auto;
}
    
/* CARDS */

.contact-card {
  border: 2px solid #5fb7d9;
  padding: 20px;
  margin-bottom: 10px;
  background: white;
}

.contact-card__title {
  margin-bottom: 15px;
  font-size: 20px;
}

.contact-card p {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.contact-label {
  margin-bottom: 2px;
}

.contact-card a {
  color: #1380E5;
  text-decoration: none;
  font-weight: 500;
}

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


@media (max-width: 900px) {

  .contact__layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact {
    margin: 100px auto 40px;
  }
  
  .contact__image {
    display: flex;
    justify-content: center;
  }
  
  .contact__image img {
    width: 70%;      
    max-width: 300px; 
  }
  
  .contact-card {
    padding: 16px;
  }
}