body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  background: linear-gradient(135deg, #ececec 0%, #bdbdbd 100%);
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 420px;
  margin: 32px auto;
  background: #fff; /* Açık, sade ve okunaklı */
  color: #222;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 18px 12px 12px 12px;
}

header {
  text-align: center;
  margin-bottom: 32px;
}

.logo {
  display: block;
  margin: 0 auto 12px auto;
  height: 140px;
  max-width: 80%;
}

h1 {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0 0 8px 0;
}

.contact h2 {
  /* başlık kaldırıldı, stil gereksiz */
}

.contact .address {
  color: #666; font-weight: 600;
}

.address, .phone {
  margin-bottom: 18px;
}


.phone-highlight {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(90deg, #963C33 0%, #9f372d 100%);
  border-radius: 8px;
  padding: 8px 0;
  text-align: center;
  letter-spacing: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  min-height: 70px;
  text-decoration: none;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 12px;
  padding-right: 12px;
  outline: 2px solid #963C33;
}

.phone-highlight span {
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 3px;
  padding-left: 12px;
}

@media (max-width: 600px) {
  .container {
    max-width: 98vw;
    padding: 18px 6vw 18px 6vw;
  }
  .logo {
    height: 90px;
  }
  h1 {
    font-size: 1.3rem;
  }
  .phone-highlight {
    font-size: 1.1rem;
  }
  .phone-highlight span {
    font-size: 1.3rem;
  }
}
