.areas-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .areas-container {
            max-width: 80%;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin: 0 auto 50px;
            max-width: 800px;
            padding: 0 20px;
            position: relative;
        }

        /* Αυτή είναι η διόρθωση - αφαίρεση του inline-block */
        .section-title h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 40px; /* Αύξηση για χώρο του υπογράμμισμα */
            position: relative;
            display: block; /* Αλλαγή από inline-block */
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #2b5876 0%, #4e4376 100%);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 3px;
        }

        .section-title p {
            font-family: 'Open Sans', sans-serif;
            font-size: 1.1rem;
            color: #666;
            line-height: 1.6;
            margin-top: 25px;
        }

        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .area-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            height: 300px;
        }
        
        .area-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .area-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .area-card:hover .area-image {
            transform: scale(1.05);
        }
        
        .area-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
            padding: 30px 20px 20px;
            color: white;
            transition: all 0.3s ease;
        }
        
        .area-card:hover .area-overlay {
            padding-bottom: 30px;
        }
        
        .area-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .area-description {
            font-family: 'Open Sans', sans-serif;
            font-size: 0.9rem;
            opacity: 0;
            max-height: 0;
            transition: all 0.3s ease;
            line-height: 1.5;
        }
        
        .area-card:hover .area-description {
            opacity: 1;
            max-height: 100px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .areas-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }

        /* Επιπλέον στυλ για επίδειξη */
        .explanation {
            max-width: 800px;
            margin: 40px auto;
            padding: 20px;
            background: #f9f9f9;
            border-radius: 8px;
            font-family: 'Open Sans', sans-serif;
        }
        
        .explanation h3 {
            color: #2b5876;
            margin-bottom: 15px;
        }
        
        .code {
            background: #2b5876;
            color: white;
            padding: 15px;
            border-radius: 5px;
            margin: 15px 0;
            font-family: monospace;
            overflow-x: auto;
        }