body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f9f9f9;
  color: #333;
}
header {
  background: #222;
  color: #fff;
  padding: 20px;
  text-align: center;
}
header h1 {
  margin: 0;
  font-size: 1.8em;
}
header p {
  margin: 5px 0 0;
  font-size: 1em;
}
main {
  padding: 20px;
  max-width: 900px;
  margin: auto;
}
section {
  margin-bottom: 40px;
}
h2 {
  color: #444;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
  font-size: 1.4em;
}
.price-list table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.price-list th, .price-list td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: left;
  font-size: 0.95em;
}
.price-list th {
  background: #eee;
}
.call-btn {
  display: inline-block;
  background: #28a745;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1.1em;
  margin-top: 15px;
  transition: background 0.3s;
}
.call-btn:hover {
  background: #218838;
}
iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 8px;
}
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}
/* Responsive */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.5em;
  }
  .price-list th, .price-list td {
    font-size: 0.85em;
    padding: 8px;
  }
  .call-btn {
    width: 100%;
    text-align: center;
  }
}



.gallery-slider {
  margin-bottom: 50px;
  text-align: center;
}

.gallery-slider h2 {
  color: #444;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.gallery-slider p {
  font-size: 1em;
  margin-bottom: 20px;
  color: #555;
}

.slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slide-track {
  display: flex;
  flex-wrap: nowrap;
  animation: scroll 11s linear infinite;
}

.slide {
  flex: 0 0 20%; /* 5 εικόνες ανά σειρά */
  box-sizing: border-box;
  padding: 10px;
}

.slide img {
  width: 100%;
  height: auto; /* διατηρεί αναλογία */
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* αδιάκοπη κύλιση */
}

/* Responsive */
@media (max-width: 900px) {
  .slide { flex: 0 0 33.33%; } /* 3 εικόνες ανά σειρά */
}

@media (max-width: 600px) {
  .slide { flex: 0 0 50%; } /* 2 εικόνες ανά σειρά */
}

