body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures the body covers the full viewport height */
}

footer {
    background-color: #b4b0b0;
    color: #000000;
    padding: 10px 0;
    text-align: center;
    margin-top: 10rem; /* Automatically pushes the footer to the bottom */
    width: 100%; /* Ensures the footer spans the entire width */
}


footer .container {
    max-width: 95%; /* Αυξάνει το συνολικό πλάτος του footer */
    margin: auto; /* Κεντράρει το footer */
}

footer .footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Επιτρέπει στις στήλες να σπάνε σε πολλές γραμμές */
    gap: 30px; /* Αυξάνει την απόσταση μεταξύ των στηλών */
}

footer .footer-column {
    flex: 1 1 400px; /* Αυξάνει το πλάτος κάθε στήλης */
    max-width: 600px; /* Επιτρέπει μεγαλύτερο χώρο για το κείμενο */
    margin: 0 auto; /* Κεντράρει τις στήλες */
    padding: 0 15px; /* Ελαφρύ padding για καλύτερη εμφάνιση */
}

footer .footer-column p {
    text-align: justify; /* Ευθυγραμμισμένο κείμενο */
    font-size: 1rem; /* Μέγεθος γραμματοσειράς για καλύτερη ανάγνωση */
    line-height: 1.4; /* Απόσταση μεταξύ γραμμών */
    margin-top: 1px;
    word-spacing: 0px;            /* πιο «κολλημένες» οι λέξεις */
    letter-spacing: 0.2px;       /* μειώνει το κενό ανάμεσα στα γράμματα */
    line-height: 1.5;
    color: #000000; /* Αφαιρεί περιττά περιθώρια */
}

footer .footer-column h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

footer .footer-column ul {
    list-style: none;
    padding: 0;
}

footer .footer-column ul li {
    margin-bottom: 10px;
}

footer .footer-column ul li a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

footer .footer-column ul li a:hover {
    color: #1e90ff;
}

footer .social-icons {
    margin-top: 0px;
}

footer .social-icons a {
    margin: 0 10px;
    color: #000000;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

footer .social-icons a:hover {
    color: #1e90ff;
}

@media only screen and (min-width: 240px) and (max-width: 600px) and (orientation: portrait) {
    footer {
        padding: 20px 8px;
        margin-top: 5rem;
        height: auto;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden; /* Εμποδίζει το οριζόντιο scroll */
    }

    footer .container {
        max-width: 100%;
        width: 100%;
        padding: 0 5px;
        box-sizing: border-box;
    }

    footer .footer-columns {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 15px;
    }

    footer .footer-column {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        padding: 0 5px; /* Μικρό padding για αποφυγή overflow */
        box-sizing: border-box;
        text-align: center;
    }

    footer .footer-column h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    footer .footer-column p {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-top: 4px;
        text-align: justify;
        word-wrap: break-word; /* Για πολύ μεγάλες λέξεις ή URLs */
        overflow-wrap: break-word;
    }

    footer .footer-column ul {
        padding: 0;
    }

    footer .footer-column ul li a {
        font-size: 0.9rem;
    }

    footer .social-icons {
        margin-top: 8px;
        text-align: center;
    }

    footer .social-icons a {
        font-size: 18px;
        margin: 0 6px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 950px) and (orientation: landscape) {
    footer {
        padding: 20px 8px;
        margin-top: 5rem;
        height: auto;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden; /* Εμποδίζει το οριζόντιο scroll */
    }

    footer .container {
        max-width: 100%;
        width: 100%;
        padding: 0 5px;
        box-sizing: border-box;
    }

    footer .footer-columns {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 15px;
    }

    footer .footer-column {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        padding: 0 5px; /* Μικρό padding για αποφυγή overflow */
        box-sizing: border-box;
        text-align: center;
    }

    footer .footer-column h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    footer .footer-column p {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-top: 4px;
        text-align: justify;
        word-wrap: break-word; /* Για πολύ μεγάλες λέξεις ή URLs */
        overflow-wrap: break-word;
    }

    footer .footer-column ul {
        padding: 0;
    }

    footer .footer-column ul li a {
        font-size: 0.9rem;
    }

    footer .social-icons {
        margin-top: 8px;
        text-align: center;
    }

    footer .social-icons a {
        font-size: 18px;
        margin: 0 6px;
    }
}

@media only screen and (min-width: 601px) and (max-width: 1024px) and (orientation: portrait) {
    footer {
        padding: 20px 8px;
        margin-top: 5rem;
        height: auto;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden; /* Εμποδίζει το οριζόντιο scroll */
    }

    footer .container {
        max-width: 100%;
        width: 100%;
        padding: 0 5px;
        box-sizing: border-box;
    }

    footer .footer-columns {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 15px;
    }

    footer .footer-column {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        padding: 0 5px; /* Μικρό padding για αποφυγή overflow */
        box-sizing: border-box;
        text-align: center;
    }

    footer .footer-column h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    footer .footer-column p {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-top: 4px;
        text-align: justify;
        word-wrap: break-word; /* Για πολύ μεγάλες λέξεις ή URLs */
        overflow-wrap: break-word;
    }

    footer .footer-column ul {
        padding: 0;
    }

    footer .footer-column ul li a {
        font-size: 0.9rem;
    }

    footer .social-icons {
        margin-top: 8px;
        text-align: center;
    }

    footer .social-icons a {
        font-size: 18px;
        margin: 0 6px;
    }
}

/* =========================================================
   💻 Landscape Tablet / Laptop (951px–1366px)
   ========================================================= */
@media only screen and (min-width: 951px) and (max-width: 1366px) and (orientation: landscape) {
    body {
        margin: 0;
        font-family: Arial, sans-serif;
        background-color: #f9f9f9;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

    footer {
        background-color: #b4b0b0;
        color: #000000;
        padding: 15px 0;
        text-align: center;
        margin-top: 10rem;
        width: 100%;
        height: auto;
        box-sizing: border-box;
    }

    footer .container {
        max-width: 95%;
        margin: auto;
        padding: 0 2rem;
        box-sizing: border-box;
    }

    footer .footer-columns {
        display: flex;
        justify-content: space-between;  /* ✅ Οι στήλες μοιράζονται οριζόντια */
        align-items: flex-start;
        flex-wrap: wrap;                 /* ✅ Σπάει σε 2 γραμμές αν δεν χωράνε */
        gap: 30px;                       /* Απόσταση μεταξύ τους */
        width: 100%;
        box-sizing: border-box;
    }

    footer .footer-column {
        flex: 1 1 30%;       /* ✅ Κάθε στήλη πιάνει περίπου το 1/3 */
        min-width: 280px;    /* ✅ Δεν μικραίνει υπερβολικά */
        max-width: 450px;
        margin: 0 auto;
        padding: 0 15px;
        text-align: center;    /* ✅ Κείμενο αριστερά για καλύτερη αναγνωσιμότητα */
        box-sizing: border-box;
    }

    footer .footer-column h3 {
        margin-bottom: 12px;
        font-size: 1.7rem;
        text-align: center;
    }

    footer .footer-column p {
        text-align: justify;
        font-size: 1.2rem;
        line-height: 1.5;
        margin-top: 4px;
        word-spacing: 0px;
        letter-spacing: 0.2px;
        color: #000000;
    }

    footer .footer-column ul {
        list-style: none;
        padding: 0;
    }

    footer .footer-column ul li {
        margin-bottom: 10px;
    }

    footer .footer-column ul li a {
        color: #000000;
        text-decoration: none;
        transition: color 0.3s;
        font-size: 1.2rem;
    }

    footer .footer-column ul li a:hover {
        color: #1e90ff;
    }

    footer .social-icons {
        margin-top: 10px;
        text-align: center;
    }

    footer .social-icons a {
        margin: 0 10px;
        color: #000000;
        font-size: 1.2rem;
        text-decoration: none;
        transition: color 0.3s;
    }

    footer .social-icons a:hover {
        color: #1e90ff;
    }
}

@media only screen and (min-width: 1367px) and (max-width: 1599px) and (orientation: landscape) {
    body {
        margin: 0;
        font-family: Arial, sans-serif;
        background-color: #f9f9f9;
        display: flex;
        flex-direction: column;
        min-height: 100vh; /* Ensures the body covers the full viewport height */
    }

    footer {
        background-color: #b4b0b0;
        color: #000000;
        padding: 10px 0;
        text-align: center;
        margin-top: 10rem; /* Automatically pushes the footer to the bottom */
        width: 100%; /* Ensures the footer spans the entire width */
        height: 90%;
    }


    footer .container {
        max-width: 95%; /* Αυξάνει το συνολικό πλάτος του footer */
        margin: auto; /* Κεντράρει το footer */
    }

    footer .footer-columns {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap; /* Επιτρέπει στις στήλες να σπάνε σε πολλές γραμμές */
        gap: 30px; /* Αυξάνει την απόσταση μεταξύ των στηλών */
    }

    footer .footer-column {
        flex: 1 1 400px; /* Αυξάνει το πλάτος κάθε στήλης */
        max-width: 600px; /* Επιτρέπει μεγαλύτερο χώρο για το κείμενο */
        margin: 0 auto; /* Κεντράρει τις στήλες */
        padding: 0 15px; /* Ελαφρύ padding για καλύτερη εμφάνιση */
    }

    footer .footer-column p {
        text-align: justify; /* Ευθυγραμμισμένο κείμενο */
        font-size: 1.2rem; /* Μέγεθος γραμματοσειράς για καλύτερη ανάγνωση */
        line-height: 1.4; /* Απόσταση μεταξύ γραμμών */
        margin-top: 1px;
        word-spacing: 0px;            /* πιο «κολλημένες» οι λέξεις */
        letter-spacing: 0.2px;       /* μειώνει το κενό ανάμεσα στα γράμματα */
        line-height: 1.5;
        color: #000000; /* Αφαιρεί περιττά περιθώρια */
    }

    footer .footer-column h3 {
        margin-bottom: 15px;
        font-size: 1.7rem;
    }

    footer .footer-column ul {
        list-style: none;
        padding: 0;
    }

    footer .footer-column ul li {
        margin-bottom: 10px;
    }

    footer .footer-column ul li a {
        color: #000000;
        text-decoration: none;
        transition: color 0.3s;
    }

    footer .footer-column ul li a:hover {
        color: #1e90ff;
    }

    footer .social-icons {
        margin-top: 0px;
    }

    footer .social-icons a {
        margin: 0 10px;
        color: #000000;
        font-size: 1.05rem;
        text-decoration: none;
        transition: color 0.3s;
    }

    footer .social-icons a:hover {
        color: #1e90ff;
    }
}

@media only screen and (min-width: 1600px) and (max-width: 1920px) and (orientation: landscape) {
    body {
        margin: 0;
        font-family: Arial, sans-serif;
        background-color: #f9f9f9;
        display: flex;
        flex-direction: column;
        min-height: 100vh; /* Ensures the body covers the full viewport height */
    }

    footer {
        background-color: #b4b0b0;
        color: #000000;
        padding: 10px 0;
        text-align: center;
        margin-top: 10rem; /* Automatically pushes the footer to the bottom */
        width: 100%; /* Ensures the footer spans the entire width */
        height: 90%;
    }


    footer .container {
        max-width: 95%; /* Αυξάνει το συνολικό πλάτος του footer */
        margin: auto; /* Κεντράρει το footer */
    }

    footer .footer-columns {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap; /* Επιτρέπει στις στήλες να σπάνε σε πολλές γραμμές */
        gap: 30px; /* Αυξάνει την απόσταση μεταξύ των στηλών */
    }

    footer .footer-column {
        flex: 1 1 400px; /* Αυξάνει το πλάτος κάθε στήλης */
        max-width: 600px; /* Επιτρέπει μεγαλύτερο χώρο για το κείμενο */
        margin: 0 auto; /* Κεντράρει τις στήλες */
        padding: 0 15px; /* Ελαφρύ padding για καλύτερη εμφάνιση */
    }

    footer .footer-column p {
        text-align: justify; /* Ευθυγραμμισμένο κείμενο */
        font-size: 1.4rem; /* Μέγεθος γραμματοσειράς για καλύτερη ανάγνωση */
        line-height: 1.4; /* Απόσταση μεταξύ γραμμών */
        margin-top: 1px;
        word-spacing: 0px;            /* πιο «κολλημένες» οι λέξεις */
        letter-spacing: 0.2px;       /* μειώνει το κενό ανάμεσα στα γράμματα */
        line-height: 1.5;
        color: #000000; /* Αφαιρεί περιττά περιθώρια */
    }

    footer .footer-column h3 {
        margin-bottom: 15px;
        font-size: 1.9rem;
    }

    footer .footer-column ul {
        list-style: none;
        padding: 0;
    }

    footer .footer-column ul li {
        margin-bottom: 10px;
    }

    footer .footer-column ul li a {
        color: #000000;
        text-decoration: none;
        transition: color 0.3s;
    }

    footer .footer-column ul li a:hover {
        color: #1e90ff;
    }

    footer .social-icons {
        margin-top: 0px;
    }

    footer .social-icons a {
        margin: 0 10px;
        color: #000000;
        font-size: 1.25rem;
        text-decoration: none;
        transition: color 0.3s;
    }

    footer .social-icons a:hover {
        color: #1e90ff;
    }
}

@media only screen and (min-width: 1921px) {
    body {
        margin: 0;
        font-family: Arial, sans-serif;
        background-color: #f9f9f9;
        display: flex;
        flex-direction: column;
        min-height: 100vh; /* Ensures the body covers the full viewport height */
    }

    footer {
        background-color: #b4b0b0;
        color: #000000;
        padding: 10px 0;
        text-align: center;
        margin-top: 10rem; /* Automatically pushes the footer to the bottom */
        width: 100%; /* Ensures the footer spans the entire width */
        height: 90%;
    }


    footer .container {
        max-width: 95%; /* Αυξάνει το συνολικό πλάτος του footer */
        margin: auto; /* Κεντράρει το footer */
    }

    footer .footer-columns {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap; /* Επιτρέπει στις στήλες να σπάνε σε πολλές γραμμές */
        gap: 30px; /* Αυξάνει την απόσταση μεταξύ των στηλών */
    }

    footer .footer-column {
        flex: 1 1 400px; /* Αυξάνει το πλάτος κάθε στήλης */
        max-width: 600px; /* Επιτρέπει μεγαλύτερο χώρο για το κείμενο */
        margin: 0 auto; /* Κεντράρει τις στήλες */
        padding: 0 15px; /* Ελαφρύ padding για καλύτερη εμφάνιση */
    }

    footer .footer-column p {
        text-align: justify; /* Ευθυγραμμισμένο κείμενο */
        font-size: 2rem; /* Μέγεθος γραμματοσειράς για καλύτερη ανάγνωση */
        line-height: 1.4; /* Απόσταση μεταξύ γραμμών */
        margin-top: 1px;
        word-spacing: 0px;            /* πιο «κολλημένες» οι λέξεις */
        letter-spacing: 0.2px;       /* μειώνει το κενό ανάμεσα στα γράμματα */
        line-height: 1.5;
        color: #000000; /* Αφαιρεί περιττά περιθώρια */
    }

    footer .footer-column h3 {
        margin-bottom: 15px;
        font-size: 3rem;
    }

    footer .footer-column ul {
        list-style: none;
        padding: 0;
    }

    footer .footer-column ul li {
        margin-bottom: 10px;
        font-size: 2rem;
    }

    footer .footer-column ul li a {
        color: #000000;
        text-decoration: none;
        transition: color 0.3s;
        font-size: 2rem;
    }

    footer .footer-column ul li a:hover {
        color: #1e90ff;
        
    }

    footer .social-icons {
        margin-top: 0px;
    }

    footer .social-icons a {
        margin: 0 10px;
        color: #000000;
        font-size: 3rem;
        text-decoration: none;
        transition: color 0.3s;
    }

    footer .social-icons a:hover {
        color: #1e90ff;
    }
    #p {
        font-size: 2rem;
    }
}

