p, li, ul, a {
  all:unset;
}

h3{
  font-family: "Signika Negative", sans-serif;
  padding-top: 16px;
}

a{
  display: flex;
}

header {
  display: flex;
  /*align-items: center;*/
  gap: 12px;
  border-bottom:  #e26006 6px solid;
  font-family: "Signika Negative", sans-serif;
  text-align: left;
  justify-content: space-between;
}

footer {
  font-family: "Signika Negative", sans-serif;
  font-weight: 550;
  text-align: center;
}

.header-card {
  background-color: white;
  padding: 18px;
  border-radius: 5px;
  margin-bottom: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.05);
  border-top: 1px black solid ;
  border-left: 1px black solid ;
  border-right: 1px black solid ;
}

.logo {

}

.info {
  font-weight: 550;
}

.card {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px black solid ;
}



.tile-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  list-style-type: none;
  padding: 0;
}

.tile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 550;
  padding: 12px;
  min-height: 120px;
  gap: 8px;
}

/* Style for the last tile when there's an odd number */
.tile-list li:last-child:nth-child(odd) {
  grid-column: 1 / span 2;
  width: calc(50% - 8px); /* Half the width minus half the gap */
  margin: 0 auto;
  justify-self: center;
}


.get-in-touch{
  display:flex;
  flex-direction: column;
  padding-left:8px;
  gap: 8px;
}

.contact-p{
  display: flex;
  align-items: center;
  gap: 8px;
}





