/* RESET */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  line-height: 1.6;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid #e5e5e5;
}

.logo { height: 70px;}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

/* PAGE HERO */
.page-hero {
  position: relative;
  height: 45vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px; /* NEW */
}


.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.9);
  padding: 25px 50px;
  font-size: 36px;
}

/* CONTENT */
.content {
  padding: 100px 20px 80px; /* πιο γενναίο top */
  max-width: 1100px;
  margin: auto;
}


.content h2 {
  text-align: center;
  font-size: 32px;
}

.content h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #000;
  margin: 15px auto 0;
}

/* TEXT BLOCK */
.text-block {
  max-width: 800px;
  margin: 40px auto 0;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-top: 50px;
}

/* =====================
   SERVICES PAGE
===================== */
.services-section {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px 140px;
}

.service-block {
  padding: 70px 60px; /* ΠΙΟ ΑΝΕΤΟ */
  margin-bottom: 70px; /* ΡΥΘΜΟΣ */
  background: #fff;
  border-left: 6px solid #000;
  transition: transform 0.3s ease;
}

.service-block:last-child {
  margin-bottom: 0;
}

.service-block.alt {
  background: #f7f7f7;
  border-left-color: #333;
}

.service-block h3 {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 26px;
}

.service-block p,
.service-block ul {
  font-size: 16px;
  line-height: 1.9; /* ΠΟΛΥ ΣΗΜΑΝΤΙΚΟ */
}

/* CTA */
.cta-section {
  margin-top: 80px;
  background: linear-gradient(135deg, #000, #222);
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.cta-button {
  background: #fff;
  color: #000;
  padding: 14px 34px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 25px;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
}

/* FOOTER */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 30px 20px;
  font-size: 13px;
}

/* ANIMATIONS */
.fade-in,
.slide-up {
  opacity: 0;
  transform: translateY(40px);
}

.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .page-hero h1 {
    font-size: 28px;
    padding: 20px 30px;
  }

  .service-block {
    padding: 40px 30px;
  }
}

@media (max-width: 600px) {
  header {
    flex-direction: column;
  }

  nav {
    margin-top: 15px;
  }
}

@media (max-width: 900px) {
  .service-block {
    padding: 45px 30px;
    margin-bottom: 50px;
  }
}
/* =====================
   MOBILE FIXES
===================== */
@media (max-width: 768px) {

  /* HEADER */
  header {
    flex-direction: column;
    padding: 20px;
  }

  .logo {
    height: 55px;
    margin-bottom: 15px;
  }

  nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  nav a {
    margin: 0;
    font-size: 16px;
  }

  /* HERO */
  .hero,
  .page-hero {
    height: auto;
    padding: 80px 20px;
    text-align: center;
  }

  .page-hero h1 {
    font-size: 26px;
    padding: 15px 25px;
  }

  /* CONTENT */
  .content {
    padding: 60px 20px;
  }

  .content h2 {
    font-size: 26px;
  }

  /* CONTACT / GRIDS */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-box,
  .legal-box {
    padding: 35px 25px;
  }

  /* CTA */
  .cta-section {
    padding: 80px 20px;
  }

  .cta-section h2 {
    font-size: 26px;
  }

  /* FOOTER */
  footer {
    font-size: 12px;
    padding: 25px 15px;
  }
}

