* {
margin: 0;
padding: 0;
box-sizing: border-box;}

.logo {
position: relative;
height: 10%; 
padding: .1vh ;
background-color: #F2CDCD;}

.page-background {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: url("images/bg.png") center/cover no-repeat fixed;}

.card {
  width: 100vw;
  background: white;
  border-radius: 0.208vw;
  overflow: hidden;
  box-shadow: 0 0.521vw 1.563vw rgba(0,0,0,0.25);}

.card-top {
  width: 100%;
  height: flex;
  overflow: hidden;}

.top-strip {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;}

.card-bottom {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.2fr;
  background: #4a4a4a;
  color: white;
  padding: 1.25vw;
  column-gap: 1.458vw;}

.brand-block {
  display: flex;
  flex-direction: column;}

.brand-name {
  font-family: "", monospace;
  font-size: 2.083vw;
  letter-spacing: 0.12em;
  line-height: 1.1;}

.brand-tagline {
  font-size: 0.573vw;
  margin-top: 0.625vw;
  letter-spacing: 0.18em;
  text-transform: uppercase;}

.links-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.625vw;}

.pill-button {
  display: block;
  text-align: center;
  background: #d3d3d3;
  padding: 0.417vw 2vh;
  border-radius: 52.031vw;
  font-size: 1.042vw;
  text-decoration: none;
  color: black;
  box-shadow: 0 0.104vw 0 rgba(0,0,0,0.25);}

.contact-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.833vw;}

.contact-title {
  font-size: 1.146vw;
  text-transform: uppercase;
  letter-spacing: 0.18em;}

.contact-icons {
  display: flex;
  gap: 0.938vw;}

.contact-icon {
  width: 2.396vw;
  height: 4.6vh;
  border: 0.104vw solid white;
  border-radius: 0.417vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;}

.contact-icon img {
  width: 70%;
  height: auto;
  object-fit: contain;}

.contact-icon:hover {
  background: white;
  transform: translateY(-0.104vw);}

@media (max-width: 768px) {
  .page-background {
    align-items: flex-start;
    padding-top: 16px; 
  }

  .card {
    width: 100%;
    max-width: 100%;
    margin: 0 8px 24px; 
  }

  .card-bottom {
    grid-template-columns: 1fr;
    row-gap: 16px;
    text-align: center;
  }

  .brand-block,
  .links-block,
  .contact-block {
    align-items: center;
  }

  .brand-name {
    font-size: 36px; 
  }

  .pill-button {
    font-size: 22px;
    padding: 10px 24px; 
  }

  .contact-icon {
    width: 56px;
    height: 56px;
  }
  
  .logo {
    position: relative;
    height: auto; 
    max-width: 800px;
    padding: .1vh ;
    background-color: #F2CDCD;}

  .logo img {
    height: auto; 
    max-width: 500px;
  }
}