/* =========================================
   1. General Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    /* Σύγχρονη stack γραμματοσειρών για καθαρότητα */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #666; /* Ανοιχτό γκρι για το κύριο κείμενο */
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

strong {
    color: #444; /* Bold στοιχεία σε σκούρο γκρι */
    font-weight: 600;
}

/* =========================================
   2. Header Section
   ========================================= */
header {
    padding: 10px 20px 40px;
    text-align: center;
}

.logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 25px;
    /* Φίλτρο σε περίπτωση που το logo είναι πολύ έντονο μαύρο */
    opacity: 0.85; 
}

.hero-message {
    font-weight: 700;
    font-size: 1.8rem;
    color: #4a4a4a; /* Σκούρο γκρι slogan */
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

/* =========================================
   3. Main Column & Content
   ========================================= */
.content-column {
    flex: 1;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    padding: 20px 25px 60px;
}

.intro-text {
    font-size: 1.15rem;
    color: #777;
    margin-bottom: 45px;
    line-height: 1.8;
    border-left: 3px solid #f0f0f0;
    padding-left: 20px;
}

.features-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 50px;
}

.feature-item h3 {
    color: #555;
    margin-bottom: 12px;
    font-size: 1.35rem;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 8px;
    font-weight: 600;
}

.feature-item p {
    color: #777;
    font-size: 1.05rem;
}

/* =========================================
   4. Interactive Toggle (Grey Box)
   ========================================= */
.toggle-section {
    margin: 40px auto;
    padding: 15px;
    background-color: #f8f8f8; /* Πολύ ελαφρύ γκρι */
    border: 1px solid #eeeeee;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    max-width: 600px;
}

.toggle-section:hover {
    background-color: #f2f2f2;
}

.toggle-section summary {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: #888;
    outline: none;
    user-select: none;
}

.toggle-section summary::-webkit-details-marker {
    display: none;
}

.toggle-section summary::before {
    content: '+';
    margin-right: 12px;
    font-size: 1.4rem;
    font-weight: 300;
}

.toggle-section[open] summary::before {
    content: '−';
}

.hidden-content {
    padding: 20px 10px 10px;
    text-align: center;
    color: #888;
    font-size: 0.95rem;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

/* =========================================
   5. Footer Section
   ========================================= */
footer {
    padding: 50px 20px;
    border-top: 1px solid #f5f5f5;
    text-align: center;
}

footer p {
    color: #aaa; /* Ανοιχτό γκρι για το copyright */
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .hero-message {
        font-size: 1.4rem;
    }
    
    .content-column {
        padding: 10px 20px;
    }
}