/* === GENERAL BODY === */
body {
    font-family: Arial, sans-serif;
    background-color: #f7f9fc;
    margin: 0;
    padding: 0;
    color: #333;
}

/* === MAIN CONTAINER === */
.container {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* === BANNER === */
.banner {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 14px;  /*  Αυτό προσθέτει το κενό κάτω από το banner */
    border-radius: 8px 8px 0 0; /* Προαιρετικό: στρογγυλές επάνω γωνίες */
}

/* === HEADER BOX === */
.header-box {
    background-color: #183d68;
    color: white;
    padding: 10px 5px;
    text-align: center;
    border-radius: 6px;
}

.header-box h2 {
    margin: 0;
    font-size: 1.4em;
    color: white;
}

.header-box .subheading {
    font-size: 1em;
    margin-top: 8px;
    margin-bottom: 10px;
    color: white;
}

.header-box .intro {
    font-size: 1em;
    color: white;
}
.intro-box {
    background-color: #b3cdf3;
    padding: 10px 5px;
    margin-top: 5px;
    margin-bottom: 10px;
    border-radius: 6px;
    text-align: center;
}

.intro-box .intro {
    color: #000;
    font-size: 1.05em;
    margin: 0;
}

/* === FORM LABELS === */
form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

/* === INPUTS === */
form label {
    display: block; /* 👈 Αυτό κάνει το label να πιάνει όλη τη γραμμή και να κάτσει πάνω από το input */
    margin-bottom: 6px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
select {
    width: 50%; /* 👈 Από 100% σε 50% του container */
    padding: 8px;
    margin-top: 4px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* === SUBMIT BUTTON === */
input[type="submit"] {
    background-color: #0573ba;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

input[type="submit"]:hover {
    background-color: #045f9c;
}

/* === LOGOS === */
.logo-ea {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 120px;
    opacity: 0.9;
}
.intro-logo {
    display: block;
    margin: 0 auto 12px auto;
    max-width: 70px;
    opacity: 0.9;
}
.footer-logo {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 10px;
}

.footer-logo img {
    max-width: 120px;
    opacity: 0.95;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-text {
    font-size: 0.9em;
    text-align: center;
    color: #555;
    margin-bottom: 30px;
}
.footer-contact {
    margin-top: 10px;          /* Απόσταση από το προηγούμενο */
    text-align: center;        /* Κέντρο */
    font-size: 0.9em;          /* Λίγο μικρότερο κείμενο */
    color: #333333;            /* Σκούρο γκρι */
}

.footer-contact a {
    color: #0573ba;            /* Το μπλε που χρησιμοποιείς */
    text-decoration: none;     /* Χωρίς υπογράμμιση */
    font-weight: bold;
}

.footer-contact a:hover {
    text-decoration: underline; /* Υπογράμμιση στο hover */
}