body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
  color: #2c2c2c;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1e293b;
  color: white;
  padding: 20px;
  flex-wrap: wrap;
}
.title {
  font-size: 1.6em;
  font-weight: bold;
}
.menu a {
  color: white;
  text-decoration: none;
  margin: 0 12px;
  padding: 8px 16px;
  background: #0ea5e9;
  border-radius: 25px;
  transition: 0.3s;
}
.menu a:hover {
  background: #38bdf8;
  color: black;
}

.phone-center {
  text-align: center;
  font-size: 1.8em;
  margin: 20px 0;
  color: #e11d48;
  font-weight: bold;
}
.blink {
  animation: blink 1.5s infinite;
}
@keyframes blink {
  50% { opacity: 0.3; }
}

img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.content {
  max-width: 850px;
  margin: 40px auto;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

h2 {
  color: #0ea5e9;
}

ul {
  list-style: none;
  padding-left: 0;
}
ul li {
  margin: 10px 0;
  font-size: 1rem;
}

footer {
  background-color: #1e293b;
  color: white;
  text-align: center;
  padding: 20px;
}