body {
    background-color: #121212;
    color: #f0f0f0;
}

/* Styling for the Contact page */

.on-top {
    text-align: center; /* Κεντράρει το κείμενο */
    padding: 4rem 2rem; /* Απόσταση γύρω από το div */
    max-width: 900px; /* Μέγιστο πλάτος για το περιεχόμενο */
    margin: 0 auto; /* Κεντράρει το div στη σελίδα */
    margin-bottom: 3rem; /* Απόσταση κάτω από αυτή την ενότητα */
}

.on-top h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem; /* Αυτή η τιμή δημιουργεί το κενό */
    line-height: 1.1;
    /* Το gradient text style υποτίθεται ότι υπάρχει ήδη στο base.css ή global.css */
    /* Αν όχι, πρόσθεσέ το εδώ: */
    background: linear-gradient(90deg, #00bfff, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #00bfff; /* Fallback color */
}

.on-top p {
    font-size: 1.1rem;
    color: #a0a0a0;
    max-width: 700px;
    margin-top: 0; /* Βεβαιώσου ότι δεν έχει πάνω margin */
    margin: 0 auto;
}

hr {
    border: none;
    height: 2px;
    background: linear-gradient(to right, transparent, #00bfff, #8a2be2, transparent);
    margin: 3rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .on-top h1 {
        font-size: 2.5rem; /* Μικρότερο μέγεθος γραμματοσειράς σε μικρότερες οθόνες */
    }
    .on-top {
        padding: 3rem 1rem;
    }
}


.contact-section {
    padding: 6rem 2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-container {
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #00bfff, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #00bfff; /* Fallback color */
}

.contact-section p {
    font-size: 1.1rem;
    color: #d0d0d0;
    display: block;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(90deg, #00bfff, #8a2be2);
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
}

.contact-info p {
    font-size: 0.9rem;
    color: #888;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.email-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(90deg, #28a745, #20c997);
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 1rem;
}

.email-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(40, 167, 69, 0.4);
    color: #fff;
    text-decoration: none;
}

.email-button i {
    margin-right: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-section h1 {
        font-size: 2.5rem;
    }

    .contact-container {
        padding: 2rem;
    }
}
