/* Βασικό Reset, Γραμματοσειρά και Χρωματική Παλέτα */
:root {
    /* Βαθύ Μπλε (Εμπιστοσύνη, Σοβαρότητα) */
    --primary-color: #1a4d6f; 
    /* Απαλό Γαλάζιο/Τυρκουάζ (Ηρεμία, Ευαισθητοποίηση) */
    --accent-color: #4682b4; 
    --text-color: #333333;
    --light-text-color: #555555;
    --bg-color: #f5f8fa; /* Πολύ απαλό γκρι-μπλε φόντο */
    --white: #ffffff;
    --border-radius: 6px;
    --transition-speed: 0.4s;
}

/* Εισαγωγή επαγγελματικών γραμματοσειρών (π.χ. Inter, Source Sans 3) */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Γενικό Container - Πιο καθαρό shadow */
.container {
    max-width: 1200px;
    width: 100%;
    background: var(--white);
    padding: 60px; /* Περισσότερο λευκός χώρος */
    border-radius: var(--border-radius);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

/* Επικεφαλίδα/Λογότυπο */
.header {
    text-align: center;
    margin-bottom: 50px;
}

.logo {
    font-size: 3.2em;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent-color);
    font-weight: 400;
}

/* Κεντρικό Περιεχόμενο */
.content {
    text-align: center;
}

.main-heading {
    font-size: 2.3em;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.1;
}

.tagline {
    font-size: 1.4em;
    color: var(--light-text-color);
    margin-bottom: 50px;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ΝΕΑ ΣΤΥΛ ΓΙΑ ΠΛΟΥΣΙΟ ΠΕΡΙΕΧΟΜΕΝΟ */
.info-section {
    max-width: 1000px;
    margin: 50px auto;
    padding: 30px;
    text-align: left;
    background-color: var(--bg-color); /* Διακριτό φόντο για τις ενότητες */
    border-radius: var(--border-radius);
    border-left: 5px solid var(--accent-color);
}

.info-section h3 {
    text-align: left;
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Στυλ για το Grid Χαρακτηριστικών (πιο σοβαρό) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: left;
    margin-top: 20px;
}

.feature-item {
    padding: 25px;
    border-radius: var(--border-radius);
    background-color: var(--white);
    /* Διακριτικό περίγραμμα αντί για έντονο shadow */
    border: 1px solid #e0e0e0; 
    transition: all var(--transition-speed);
}

.feature-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.feature-item h4 {
    color: var(--accent-color);
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-item p {
    font-size: 0.95em;
    color: var(--light-text-color);
}

/* Στυλ για την Αποστολή */
.mission-statement {
    padding: 40px;
    background-color: var(--white);
    border: 1px solid #e0e0e0;
}

.mission-statement p {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: var(--text-color);
    text-align: justify;
}

.mission-statement ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.mission-statement li {
    padding: 12px 0 12px 30px;
    margin-bottom: 10px;
    position: relative;
    color: var(--text-color);
}

/* Μοντέρνο Bullet Point */
.mission-statement li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2em;
}

/* Κάλεσμα για Δράση (CTA) */
.cta-section {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.cta-item {
    flex: 1;
    min-width: 320px; 
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center