 body {
  font-family: "Trebuchet MS", Helvetica, sans-serif !important;
  margin: 0;
  padding: 0;
  padding-top: 50px;
  width: 100%;
}
.wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

nav {
  display: flex;
  position: fixed; /* stays always on top */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  align-items: center;
  justify-content: space-between; /* Logo left, links right */
  background-color: white;
  border-radius: 4px; /* better for full-width navbar */
  padding: 6px 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

nav .logo {
  max-height: 60px;
  max-width: 100%;
  width: auto;
  height: auto;
  cursor: pointer;
}
@media (max-width: 480px) {
  nav .logo {
    max-height: 45px;      /* μικρότερο logo σε κινητό */
  }
}

nav ul{
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  transition: all 0.5s;
}

nav li{
  display: block;
  margin-left: 50px 0;
  line-height: 30px;
}

nav a{
  color: #a1a1a1;
  text-decoration: none;
  font-size: 15px;
  padding: 5px 15px;
  border-radius: 3px;
  font-weight: bold;
  font-family: inherit !important;
}

nav a:hover{
  color: #000000;
}

/* ===== Sidebar ===== */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  background-color:rgba(255, 255, 255, 0.5); /* εμφανές χρώμα */
  backdrop-filter: blur(12px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 9999;
}
.sidebar li {
  width: 100%;
}
.sidebar a {
  display: block;
  width: 100%;
  color: black;
}

.menu-button{
  display: none;
}
@media(max-width: 800px){
  .hideOnMobile{
    display: none;
  }
  .menu-button{
    display: block;
  }
}
@media(max-width: 400px){
  .sidebar{
    width: 100%;
  }
}
/* ===== Containers ===== */
.container {
  width: 100%;
}

.container1 {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Partner container */
.partnercont {
  width: 100%;
  padding: 0 8px;
}

.partnercont h2 {
  font-size: clamp(1rem, 0.3589743589743589rem + 2.735042735042735vw, 2rem);
  text-align: center;
  margin: 20px 0;
}

.partnercont h3{
  color: red;
  font-size: clamp(1rem, 0.3589743589743589rem + 2.735042735042735vw, 2rem);
  text-align: center;
}

.gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(100px, 25vw, 200px), 1fr));
  gap: 10px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 2/4;  /* τετράγωνες εικόνες */
  object-fit: cover;
  border-radius: 8px;
}

/* ===== Iframe ===== */
iframe {
  width: 100%;
  height: 400px;
}

/* ===== Titles ===== */
h1, h2, h3, h4, h5, h6, p, span, a, li {
  font-family: inherit !important;
}

h1 {
  margin-top: 0;
}

h2 {
  text-align: center;
}

h3{
  color: white;
  margin-top: 0;
}

/* ---------------- Desktop Table ---------------- */
.cart-desktop {
  display: block;
  overflow-x: auto;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th, .cart-table td {
  padding: 12px 8px;
  text-align: center; /* καλύτερη ευθυγράμμιση */
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
}

.cart-table th {
  background-color: #f8f8f8;
}

.cart-table img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

.qty-btn {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid #ccc;
  border-radius: 2px;
  background: #f5f5f5;
  font-weight: bold;
  text-decoration: none;
  color: #333;
  margin: 0 3px;
}

.qty-btn.minus { color: #dc3545; }
.qty-btn.plus { color: #28a745; }

.remove-btn {
  color: #dc3545;
  text-decoration: none;
  font-size: 18px;
}
.qty-num {
  min-width: 25px;
  display: inline-block;
  text-align: center;
}

.total-row {
  font-weight: bold;
  background: #fafafa;
}

.checkout-btn .disabled-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ccc;
  color: #666;
  border-radius: 8px;
  font-weight: bold;
  pointer-events: none;
}

.min-order-msg {
  font-size: 0.9em;
  color: #c00;
  margin-top: 5px;
}

/* ---------------- Mobile Cards ---------------- */
.cart-mobile {
  display: none;
}

.cart-card {
  display: flex;
  gap: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 15px;
  background: #fff;
}

.card-left img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

.card-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-right h3 {
  margin: 0 0 8px 0;
  font-weight: bold;
  font-size: 1em;
  color: #333;
}

.card-right p {
  margin: 3px 0;
  font-size: 0.9em;
}

.cart-card .qty-btn {
  padding: 3px 6px;
}

.cart-card .qty-num {
  min-width: 20px;
}

.cart-card .remove-btn {
  color: #d33;
  text-decoration: none;
  font-size: 0.9em;
  display: inline-flex;
  align-items: center;
  margin-top: 5px;
}

.cart-total-mobile {
  text-align: right;
  font-weight: bold;
  margin-bottom: 15px;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 768px) {
  .cart-desktop { display: none; }
  .cart-mobile { display: block; }

  .cart-card {
    flex-direction: row; /* εικόνα αριστερά, στοιχεία δεξιά */
    align-items: flex-start;
  }

  .card-right {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .cart-card .card-right h3 {
    font-size: 1.05em;
  }

  .cart-card .cart-item-actions {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 8px;
  }
}

/* Checkout button */
.checkout-btn {
  margin-top: 20px;
  text-align: right;
}

.btn-add {
  background: #28a745;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.disabled-btn {
  background: gray;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0.6;
  font-weight: bold;
}

.min-order-msg {
  color: red;
  margin-top: 10px;
}


.product-card {
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: inherit !important;
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 20em; /* desktop ύψος */
  object-fit: cover;
  border-radius: 2px;
}

.product-card a {
  text-decoration: none;
}

.product-card h3 {
  color: black;
  font-size: 0.5rem;
  font-size: clamp(0.5rem, 0.15596330275229353rem + 1.4678899082568808vw, 1rem);
  margin: 10px 0 5px;
}

.product-card .price {
  font-weight: bold;
  color: black;
  font-size: 0.5rem;
  font-size: clamp(0.5rem, 0.15596330275229353rem + 1.4678899082568808vw, 1rem);
}

/* Similar products grid */
.similar-products {
  background-color: #fff;
  border-radius: 2px;
  text-align: center;
  font-family: inherit !important;
  transition: transform 0.2s ease;
}

.similar-product:hover {
  transform: translateY(-5px);
}

.similar-product-card {
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: inherit !important;
  transition: transform 0.2s ease;
}

.similar-product-card img {
  width: 100%;
  height: 20em; /* desktop ύψος */
  object-fit: cover;
  border-radius: 2px;
}

.similar-product-card h4 {
  color: black;
  font-size: 0.5rem;
  font-size: clamp(0.5rem, 0.15596330275229353rem + 1.4678899082568808vw, 1rem);
  margin: 10px 0 5px;
}

.similar-product-card a {
  text-decoration: none;
}

/* Mobile responsive – horizontal card layout */
@media (max-width: 768px) {
  .cart-table, .cart-table thead, .cart-table tbody, .cart-table th, .cart-table td, .cart-table tr {
    display: block;
    width: 100%;
  }

  .cart-table thead tr {
    display: none;
    width: 100%;
  }

  .cart-table tbody tr {
    width: 100%;
    display: flex;
    flex-direction: row; /* εικόνα αριστερά, στοιχεία δεξιά */
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.4s forwards;
  }

  .cart-table tbody td {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 2px 8px;
    text-align: left;
    border: none;
    width: auto;
  }

  .cart-table tbody td[data-label="Εικόνα"] {
    flex: 0 0 90px;
    margin-right: 10px;
  }

  .cart-table tbody td:not([data-label="Εικόνα"]) {
    flex: 1;
  }

  .cart-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 5px;
  }

  .qty-btn {
    font-size: 18px;
    margin: 0 4px;
  }

  .checkout-btn {

    text-align: center;
    margin-top: 20px;
  }

  .btn-add, .disabled-btn {
    width: 90%;
    display: inline-block;
  }

  /* animation */
  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }
}

/* Responsive for mobile – horizontal card */
@media (max-width: 768px) {
  .cart-table, .cart-table thead, .cart-table tbody, .cart-table th, .cart-table td, .cart-table tr {
    display: block;
    width: 100%;
  }

  .cart-table thead tr {
    display: none; /* Κρύβουμε header */
  }

  .cart-table tbody tr {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.3s forwards;
  }

  .cart-table tbody td {
    display: flex;
    flex-direction: column;
    padding: 0 6px;
    text-align: left;
    border: none;
    flex: 1;
  }

  /* Εικόνα αριστερά */
  .cart-table tbody td[data-label="Εικόνα"] {
    flex: 0 0 80px;
    margin-right: 10px;
  }

  .cart-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
  }

  /* Compact στοιχεία δεξιά */

  .product-info-line {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 4px;
    flex-wrap: wrap;
  }

  .qty-btn {
    font-size: 16px;
    margin: 0 4px;
  }

  .checkout-btn {
    text-align: center;
    margin-top: 20px;
  }

  .btn-add, .disabled-btn {
    width: 90%;
    display: inline-block;
  }

  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
  }
}


/* ===== Company Section ===== */

.etairia {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  top:0;
  padding: 0;
}

.etairia picture,
.etairia img {
  display: block;
  width: 100%;
  height: auto;
}
.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 100%;
  padding: 10px;
}

.overlay-text h1,
.overlay-text h2,
.overlay-text h3 {
  margin: 0;              /* καταργεί τα default κενά */
  padding: 0;
  line-height: 1.2;       /* πιο “σφιχτή” γραμμή */
}

.overlay-text h1 {
  font-family: inherit !important;
  font-size: 1rem;
  font-size: clamp(1rem, -0.7201834862385321rem + 7.339449541284404vw, 3.5rem);
  font-weight: bold;
}

.overlay-text h2 {
  font-family: inherit !important;
  font-size: 1rem;
  font-size: clamp(1rem, -0.7201834862385321rem + 7.339449541284404vw, 3.5rem);
}

.overlay-text h3 {
  color: red;
  font-family: inherit !important;
  font-size: 0.5rem;
  font-size: clamp(0.5rem, -0.5321100917431194rem + 4.4036697247706424vw, 2rem);
  margin-top: 3em;
}
/* ===== Products ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  padding: 30px;
}

.product-card {
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: inherit !important;
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 20em; /* desktop ύψος */
  object-fit: cover;
  border-radius: 2px;
}

.product-card a {
  text-decoration: none;
}

.product-card h3 {
  color: black;
  font-size: 0.5rem;
  font-size: clamp(0.5rem, 0.15596330275229353rem + 1.4678899082568808vw, 1rem);
  margin: 10px 0 5px;
}

.product-card .price {
  font-weight: bold;
  color: black;
  font-size: 0.5rem;
  font-size: clamp(0.5rem, 0.15596330275229353rem + 1.4678899082568808vw, 1rem);
}

/* Media Queries για responsiveness */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
  }
  .product-card img {
    height: 18em;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    padding: 15px;
  }
  .product-card img {
    height: 15em;
  }
  .product-card h3 {
    font-size: 1rem;
    font-size: clamp(1rem, 0.8279816513761468rem + 0.7339449541284404vw, 1.25rem);
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    padding: 10px;
  }
  .product-card img {
    height: 12em;
  }
  .product-card h3 {
    font-size: 13px;
  }
}


/* --- SINGLE PRODUCT PAGE --- */
/* ===== Κύριο container προϊόντος ===== */
.product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px auto;
    max-width: 1200px;
    padding: 0 15px;
    align-items: flex-start;
}

/* ===== Φωτογραφία προϊόντος ===== */
.product-image {
    flex: 1 1 100px;
    max-width: 40em;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    object-fit: contain;
}

/* ===== Πληροφορίες προϊόντος ===== */
.product-info {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
}

/* Τιμή, unit και package */
.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 5px 0;
}

.unit, .package {
    font-size: 1rem;
    color: #666;
    margin: 0 0 15px 0;
}

.description {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* ===== Desktop Styles ===== */
@media (min-width: 768px) {
    .product-container {
        gap: 40px;
        padding: 20px;
    }

    .product-image {
        flex: 1 1 400px;
        max-width: 500px; /* Προσθήκη μέγιστου πλάτους */
        margin: 0 auto; /* Κεντράρισμα */
    }

    .product-image img {
        max-height: 500px; /* Περιορισμός ύψους */
        object-fit: contain; /* Διατήρηση αναλογιών */
    }

    .product-info {
        flex: 1 1 400px;
        padding-top: 20px;
    }

    .price {
        font-size: 1.8rem;
    }

    .description {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

/* ===== Large Desktop Styles ===== */
@media (min-width: 1200px) {
    .product-container {
        gap: 60px;
        padding: 30px;
    }

    .product-image {
        flex: 1 1 450px;
        max-width: 550px;
    }

    .product-image img {
        max-height: 550px;
    }

    .product-info {
        flex: 1 1 450px;
        padding-top: 30px;
    }

    .price {
        font-size: 2rem;
    }

    .unit, .package {
        font-size: 1.1rem;
    }

    .description {
        font-size: 1.15rem;
        line-height: 1.7;
    }
}

/* ===== Form στοιχεία ===== */
.variation-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.variation-form label {
    margin-bottom: 5px;
    font-weight: 500;
}

.variation-form select,
.variation-form input {
    padding: 7px;
    font-size: 1rem;
    border-radius: 4px;
    border: 1px solid #ccc;
}

/* ===== Κουμπί προσθήκης στο καλάθι ===== */
.btn-add {
    padding: 12px 18px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 10px;
    transition: background-color 0.2s ease;
}

.btn-add:hover {
    background-color: #0056b3;
}

/* ===== Παρόμοια προϊόντα ===== */
.similar-products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.similar-product-card {
    flex: 1 1 150px;
    max-width: 200px;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.similar-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.similar-product-card img {
  width: 100%;
  aspect-ratio: 4/4;
  object-fit: cover;
}

.similar-product-card h4 {
    font-size: 1rem;
    margin: 5px 0;
}

.similar-product-card p {
    font-size: 0.9rem;
    color: red;
    margin: 0;
}

/* ===== Media Queries για κινητά και tablet ===== */
@media (max-width: 992px) {
    .product-container {
        flex-direction: column;
        align-items: center;
    }

    .product-image, .product-info {
        max-width: 100%;
        width: 100%;
    }

    .similar-products {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .price {
        font-size: 1.3rem;
    }

    .variation-form select,
    .variation-form input {
        font-size: 0.95rem;
    }

    .btn-add {
        width: 100%;
        text-align: center;
    }

    .similar-product-card {
        max-width: 90%;
    }
}

.filters form {
  display: flex;
  flex-wrap: nowrap; /* πάντα σε μία γραμμή */
  justify-content: center;
  align-items: center;
  gap: 10px; /* κενό μεταξύ επιλογών */
  margin: 10px 0;
}

.filters select,
.filters button {
  margin-top: 2em;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background-color: #fff;
  cursor: pointer;
  white-space: nowrap; /* για να μην σπάνε οι λέξεις */
}

.filters button {
  background-color: #007bff;
  color: #fff;
  border: none;
  transition: background 0.2s ease;
}

.filters button:hover {
  background-color: #0056b3;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .filters select,
  .filters button {
    margin-top: 0;
    padding: 4px 8px;
    font-size: 12px;
  }
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  font-family: inherit !important;
}

.form-group select,
.form-group input[type="number"] {
  padding: 8px;
  width: 150px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: inherit !important;
}

.btn-add {
  padding: 10px 18px;
  background: #a8a832;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit !important;
}

.btn-add:hover {
  background: #909028;
}

/* ====== Στυλ για τα radio κουτάκια (μέγεθος / χρώμα) ====== */
.options-group {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.option-box {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease-in-out;
  font-family: inherit !important;
}

.option-box input {
  display: none;
}

.option-box span {
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
}

.option-box:hover {
  border-color: #a8a832;
}

.option-box input:checked + span {
  color: #fff;
  background: #a8a832;
  padding: 6px 10px;
  border-radius: 4px;
}

/* ===== Buttons ===== */
button {
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  font-family: inherit !important;
}

button:hover{
  background-color: #a8a832;
  border-color: #a8a832;
  color:#fff;
  transform: scale(1.02);
  z-index: 2;
}

.btn-remove {
  background: #dc3545;
  color: #fff;
}

/* ===== Forms ===== */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit !important;
}
/* Στυλ για την επιλογή τρόπου μεταφοράς */
.form-group.shipping {
    background-color: #f8f8f8;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-top: 20px;
}

.form-group.shipping label {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.form-group.shipping input[type="radio"] {
    margin-right: 8px;
    transform: scale(1.1); /* λίγο μεγαλύτερα κουμπιά */
}

.form-group.shipping input[type="radio"] + span {
    margin-right: 15px;
}



/* ===== Footer ===== */
.site-footer {
  font-size: 0.4rem;
  font-size: clamp(0.4rem, 0.015384615384615385rem + 1.641025641025641vw, 1rem);
  text-align: center;
  padding: 18px;
  margin-top: 20px;
  color: #666;
  font-family: inherit !important;
}
.site-footer a{
  font-size: 0.4rem;
  font-size: clamp(0.4rem, 0.015384615384615385rem + 1.641025641025641vw, 1rem);
  text-decoration: none;
  padding: 18px;
  margin-top: 20px;
  color: #666;
  font-family: inherit !important;
}


.footer_div {
  width: 80%;
  margin: 40px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: inherit;
  line-height: 1.6;
  color: #333;
  text-align: left; /* Όλα τα στοιχεία αριστερά */
}

.footer_div h1 {
  margin-bottom: 15px;
  color: #000;
  font-size: 1rem;
  font-size: clamp(1rem, 0.7rem + 1.5vw, 2.5rem);
}

.footer_div h2 {
  text-align: left;
  margin: 20px 0 10px 0;
  color: #000;
  font-size: 1rem;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
}

.footer_div ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 15px;
  font-size: 0.5rem;
  font-size: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
}

.footer_div p {
  margin-bottom: 15px;
  font-size: 0.5rem;
  font-size: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
}
