* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100vh;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #222;
  scroll-behavior: smooth;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* HEADER */
header {
  width: 100%;
  background: linear-gradient(135deg, #00b4d8, #90e0ef);
  padding: 40px 20px;
  color: white;
  text-align: center;
}

.header-inner {
  max-width: 800px;
  margin: auto;
}

.logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 20px;
}

h1 {
  font-size: 28px;
  margin-bottom: 8px;
}

.slogan {
  font-size: 16px;
  margin-bottom: 18px;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background: white;
  color: #0077b6;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #caf0f8;
}

/* MAIN */
main {
  flex: 1;
  padding: 40px 20px;
  text-align: center;
}

.aciklama {
  max-width: 700px;
  margin: auto;
  margin-bottom: 40px;
}

.aciklama h2 {
  color: #03045e;
  margin-bottom: 10px;
}

#iletisim h2 {
  font-size: 20px;
  color: #023e8a;
  margin-bottom: 15px;
}

.ikonlar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.ikon-link-telegram {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #0077b6;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
  border-radius: 30px
}

.ikon-link-insta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #E1306C;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
  border-radius: 30px
}

.ikon-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #25D366;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
  border-radius: 30px
}

.ikon-link-telegram:hover {
  background: #023e8a;
  transform: scale(1.05);
}

.ikon-link-telegram img {
  width: 24px;
  height: 24px;
}

.ikon-link-insta:hover {
  background: #E1306C;
  transform: scale(1.05);
}

.ikon-link-insta img {
  width: 24px;
  height: 24px;
}

.ikon-link:hover {
  background: #023e8a;
  transform: scale(1.05);
}

.ikon-link img {
  width: 24px;
  height: 24px;
}

.whatsapp {
  background-color: #25D366 !important;
  border-radius: 30px
}

/* FOOTER */
footer {
  background: #22212f;
  color: white;
  text-align: center;
  font-size: 13px;
  padding: 20px;
}

footer .note {
  font-size: 11px;
  margin-top: 5px;
  color: #90e0ef;
}
