body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f5f5;
  color: #1e1e1e;
}

header {
  background: #1f2937;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  flex-wrap: wrap;
}
.title {
  font-size: 1.5em;
  font-weight: bold;
}
.menu a {
  color: white;
  text-decoration: none;
  margin: 0 12px;
  padding: 10px 14px;
  background: #10b981;
  border-radius: 25px;
  transition: 0.3s;
}
.menu a:hover {
  background: #34d399;
  color: black;
}

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

.circle-image {
  width: 320px;
  height: 320px;
  margin: 20px auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0,0,0,0.15);
}
.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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: #10b981;
}

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

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