        /* CSS CUSTOM PROPERTIES (VARIABLES) - Εύκολες Αλλαγές Χρωμάτων */
        :root {
            --primary-color: #0d6efd; /* Βασικό μπλε Bootstrap */
            --secondary-color: #6c757d; /* Δευτερεύον γκρι */
            --accent-color: #198754; /* Πράσινο για έμφαση */
            --background-light: #f8f9fa;
            --text-dark: #212529;
            --text-light: #6c757d;
            --header-footer-bg: #e9ecef;
            --shadow-color: rgba(0, 0, 0, 0.08);
            --border-radius-global: 0.5rem;
        }

        /* Γενικά Στυλ */
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--text-dark);
            background-color: #fff;
            padding-top: 76px; /* Αποφυγή υπερκάλυψης από fixed navbar */
        }

        /* Επικεφαλίδα */
        .site-header {
            background-color: var(--header-footer-bg);
            border-bottom: 1px solid rgba(0, 0, 0, .1);
            box-shadow: 0 2px 10px var(--shadow-color);
        }

        /* Λογότυπο - Μπορείς να ανεβάσεις το δικό σου αρχείο */
        .navbar-brand .logo-container {
            height: 50px;
            display: flex;
            align-items: center;
        }
        .navbar-brand .logo-placeholder {
            height: 100%;
            max-width: 180px;
            background-color: var(--primary-color);
            border-radius: var(--border-radius-global);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 1.25rem;
            padding: 0 1rem;
            text-decoration: none;
        }
        .navbar-brand .logo-placeholder:hover {
            opacity: 0.95;
            text-decoration: none;
        }

        /* Κύρια Πλοήγηση */
        .navbar-nav .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            padding: 0.5rem 1rem;
            margin: 0 0.1rem;
            border-radius: var(--border-radius-global);
            transition: all 0.2s ease;
        }
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            background-color: var(--primary-color);
            color: white !important;
        }

        /* Κεντρικό Περιεχόμενο */
        .main-content {
            min-height: 65vh;
        }

        /* Κάρτες Πληροφοριών */
        .info-card {
            border: none;
            border-radius: var(--border-radius-global);
            box-shadow: 0 5px 15px var(--shadow-color);
            transition: transform 0.3s ease;
            height: 100%;
            margin-bottom: 1.5rem;
        }
        .info-card:hover {
            transform: translateY(-5px);
        }
        .info-card .card-header {
            background-color: var(--primary-color);
            color: white;
            border-radius: var(--border-radius-global) var(--border-radius-global) 0 0 !important;
            font-weight: 600;
            padding: 1rem 1.25rem;
        }
        .info-card .card-body {
            padding: 1.5rem;
        }

        /* Λίστες Στοιχείων */
        .info-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
        .info-list li {
            padding: 0.6rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, .08);
            display: flex;
        }
        .info-list li:last-child {
            border-bottom: none;
        }
        .info-list .info-label {
            font-weight: 600;
            min-width: 180px;
            color: var(--primary-color);
        }

        /* Υποσέλιδο */
        .site-footer {
            background-color: var(--header-footer-bg);
            color: var(--text-light);
            border-top: 1px solid rgba(0, 0, 0, .1);
            margin-top: auto;
            padding: 2rem 0;
        }
        .legal-info {
            font-size: 0.85rem;
            color: var(--text-light);
            border-top: 1px dashed rgba(0, 0, 0, .1);
            padding-top: 1.5rem;
            margin-top: 1.5rem;
        }

        /* Κουμπί Επικοινωνίας */
        .contact-btn {
            background-color: var(--accent-color);
            border: none;
            color: white;
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: var(--border-radius-global);
            transition: all 0.2s ease;
        }
        .contact-btn:hover {
            background-color: #157347;
            transform: scale(1.03);
            color: white;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .navbar-brand .logo-placeholder {
                font-size: 1rem;
                padding: 0 0.75rem;
                max-width: 150px;
            }
            .info-list .info-label {
                min-width: 140px;
            }
        }
        @media (max-width: 576px) {
            .info-list li {
                flex-direction: column;
            }
            .info-list .info-label {
                margin-bottom: 0.25rem;
            }
            body {
                padding-top: 66px;
            }
        }
