body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #e0f7fa;
  margin: 0;
  padding: 0;
  color: #01579b;
}

header {
  background-color: #0288d1;
  color: #ffffff;
  padding: 40px 20px;
  text-align: center;
}

header .header-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ✅ Ensures text block (Nevizh + subtitle) is left-aligned */
.header-flex div {
  text-align: left;
}

/* 🔍 Logo set to 2× size */
header img {
  height: 120px;
  object-fit: contain;
  width: auto;
}

header h1 {
  margin: 0;
  font-size: 3.2em;
  letter-spacing: 1px;
}

header p {
  font-size: 1.2em;
  margin-top: 10px;
}

.container {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
  background-color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}

h2 {
  color: #0277bd;
  margin-top: 0;
}

.highlight {
  font-weight: 600;
  color: #0277bd;
}

.eiyarkai-link {
  font-weight: bold;
  color: #01579b;
  text-decoration: none;
  background-color: #b3e5fc;
  padding: 6px 10px;
  border-radius: 6px;
}

.contact,
.footer {
  background-color: #01579b;
  color: white;
  padding: 20px;
  text-align: center;
}

.contact p {
  margin: 8px 0;
}

.footer a {
  color: #81d4fa;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* 🔧 Mobile responsiveness */
@media (max-width: 600px) {
  header h1 {
    font-size: 2.2em;
  }

  .container {
    padding: 20px 15px;
  }

  header img {
    height: 80px !important;
  }
}
