* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: #0f172a;
    color: #e2e8f0;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.hero h1 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.subtitle {
    margin-bottom: 40px;
    font-size: 18px;
    color: #94a3b8;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 12px 22px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn.primary {
    background: #2563eb;
    color: white;
}

.btn.primary:hover {
    background: #1d4ed8;
}

.btn.secondary {
    background: #14b8a6;
    color: white;
}

.btn.secondary:hover {
    background: #0d9488;
}

.btn.outline {
    border: 1px solid #475569;
    color: #e2e8f0;
}

.btn.outline:hover {
    background: #1e293b;
}

.info-section {
    padding: 80px 20px;
    background: #111827;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

h2 {
    margin-bottom: 20px;
    font-size: 22px;
}

.about p {
    margin-bottom: 20px;
    color: #cbd5e1;
}

.about ul {
    list-style: none;
    margin-bottom: 20px;
}

.about ul li {
    margin-bottom: 8px;
}

.text-link {
    color: #3b82f6;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

.service-links {
    display: grid;
    gap: 12px;
}

.service-links a {
    padding: 12px;
    background: #1e293b;
    text-decoration: none;
    color: #e2e8f0;
    border-radius: 6px;
    transition: 0.3s;
}

.service-links a:hover {
    background: #334155;
}

footer {
    padding: 30px 20px;
    text-align: center;
    background: #0f172a;
    font-size: 14px;
    color: #94a3b8;
}

footer a {
    color: #3b82f6;
    text-decoration: none;
}

@media (max-width: 900px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 70px 20px;
    }
}

/* ---------- */

.hero-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;              /* Απόσταση μεταξύ κειμένου και logo */
    max-width: 700px;       /* Δεν πιάνει όλο το width */
    margin: 0 auto 30px;    /* Κεντραρισμένο */
}

.hero-title-text h1 {
    font-size: 32px;
    line-height: 1.3;
    margin: 0;
    text-align: right;      /* Το κείμενο να κοιτάει προς το logo */
}

.hero-title-logo img {
    max-height: 80px;       /* Ρύθμισε ανάλογα */
    width: auto;
}

/* ---------- */

@media (max-width: 768px) {
    .hero-title {
        flex-direction: column;
        text-align: center;
    }

    .hero-title-text h1 {
        text-align: center;
    }
}

