/* ========== GENEL RESET ========== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #f7f5f2;          /* kırık beyaz arka plan */
  color: #25323a;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;            /* yukarıya yakın dursun */
  padding: 40px 16px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========== ANA KART (soldaki ilk tasarımdaki büyük kutu) ========== */
.page {
  width: 100%;
  max-width: 1100px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  padding: 24px 22px 30px;
}

/* ========== ÜST BAŞLIK (logo + TRIMATE HEALTHCARE) ========== */
.header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e1e4e7;
  margin-bottom: 16px;
}

.header img.logo {
  height: 56px;
  width: auto;
}

.header-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header-title h1 {
  font-size: 22px;
  letter-spacing: 0.05em;
  color: #007d8c;
  text-transform: uppercase;
}

.header-title span {
  font-size: 12px;
  color: #6b7a86;
}

/* ========== GİRİŞ METNİ (TRIMATE Healthcare, yalnızca Philips...) ========== */
.intro {
  margin-bottom: 18px;
  font-size: 13px;
  line-height: 1.7;
  color: #44505b;
}

.intro strong {
  color: #007d8c;
}

/* ince gri ayırıcı çizgi istersen */
.divider {
  border: 0;
  border-top: 1px solid #e1e4e7;
  margin: 4px 0 14px;
}

/* ========== ALT BÖLÜM: SOL GÖRSEL + SAĞ LİNK KARTI ========== */

.images-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 22px;
}

/* Sol: MRI görsel kartı (soldaki tasarımdaki gibi) */
.image-card {
  flex: 2 1 420px;
  background: #f8fafb;
  border-radius: 16px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-card img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.image-card span {
  margin-top: 8px;
  font-size: 12px;
  color: #616d78;
  text-align: center;
}

/* Sağ: ikinci MRI görselinin yerine gelecek link kartı */
.links-card {
  flex: 1.4 1 260px;
  background: #fbfcfd;
  border-radius: 16px;
  padding: 16px 14px 14px;
  border: 1px solid #e1e7eb;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
  display: flex;
  flex-direction: column;
}

.links-card-header {
  margin-bottom: 10px;
}

.links-card-header h2 {
  font-size: 15px;
  color: #007d8c;
  margin-bottom: 4px;
}

.links-card-header p {
  font-size: 12px;
  color: #6b7a86;
}

/* Link listesi (buton gibi gözükecek) */
.link-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid #dde5ea;
  background: #ffffff;
  color: #26404a;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.08s ease;
}

.link-item span {
  font-weight: 500;
}

.link-item small {
  font-size: 10px;
  color: #8a9aa4;
}

.link-item:hover {
  background: #e6f4f6;
  border-color: #b7dde3;
  transform: translateY(-1px);
}

/* Öne çıkan (ör: İletişim) buton */
.link-item.primary {
  background: #007d8c;
  border-color: #007d8c;
  color: #ffffff;
}

.link-item.primary small {
  color: rgba(255,255,255,0.8);
}

.link-item.primary:hover {
  background: #006a77;
}

/* ========== ALT KISIM: LinkedIn butonu + telif yazısı ========== */
.footer {
  padding-top: 14px;
  border-top: 1px solid #e1e4e7;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
}

.footer a.button {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid #007d8c;
  color: #ffffff;
  background: #007d8c;
  font-size: 12px;
  font-weight: 500;
}

.footer a.button:hover {
  opacity: 0.92;
}

.footer small {
  color: #7b8994;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  body {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .page {
    padding: 20px 16px 24px;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .header img.logo {
    height: 48px;
  }

  .header-title h1 {
    font-size: 19px;
  }
}

@media (max-width: 640px) {
  .images-row {
    flex-direction: column;
  }
}