body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
  background: #f5f5f5;
}

/* Hero with background */
.hero {
  background: url('E65B412C-EC6C-41BC-8F96-FB690D69CEAC.png') no-repeat center center/cover;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.phone-number {
  font-size: 1.8rem;   /* μεγαλώνει το μέγεθος */
  font-weight: bold;   /* έντονο */
  color: #00ffcc;      /* φωτεινό χρώμα */
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7); /* σκιά */
  display: inline-block;
  margin: 15px 0;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.status {
  background: rgba(0,0,0,0.7);
  padding: 8px 15px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
  font-size: 14px;
}

.dot {
  height: 10px;
  width: 10px;
  background: #00ff00;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}

.buttons {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 6px;
  margin: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn.whatsapp {
  background: #25D366;
  color: white;
}

.btn.call {
  background: #007bff;
  color: white;
}

.btn:hover {
  opacity: 0.8;
}

/* Sections */
section {
  padding: 50px 20px;
  text-align: center;
  background: #fff;
  margin: 20px auto;
  border-radius: 8px;
  max-width: 800px;
}

.features .feature {
  margin: 15px 0;
}

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
}

footer a {
  color: #25D366;
  text-decoration: none;
}
