/* Βασικά Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

/* Header & Navigation */
header {
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #2e7d32; /* Πράσινο */
    font-size: 24px;
}

.logo h1 span {
    color: #1b5e20;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #2e7d32;
}

/* Hero Section (Αρχική) */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('1.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background: #2e7d32;
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #1b5e20;
}

/* Κοινά Στυλ για Sections */
.section-padding {
    padding: 60px 0;
}

.bg-light {
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #2e7d32;
}

/* Γιατί Εμάς - Grid */
.features-grid {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    flex: 1;
    text-align: center;
    border-top: 4px solid #2e7d32;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #333;
}

/* Επικοινωνία */
.contact-wrapper {
    background: #f1f8e9;
    padding: 40px;
    border-radius: 6px;
    max-width: 600px;
    margin: 0 auto;
    border-left: 5px solid #2e7d32;
}

.contact-info h3 {
    margin-bottom: 15px;
    color: #1b5e20;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Footer */
footer {
    background: #212121;
    color: #bbb;
    padding: 25px 0;
    font-size: 14px;
}

/* Δημιουργία flexbox για να πάει το ένα αριστερά και το άλλο δεξιά */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Για να "σπάει" όμορφα σε οθόνες κινητών */
    gap: 15px;
}

/* Στυλ για το Link του PDF */
.footer-link {
    color: #bbb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Εφέ όταν ο χρήστης περνάει το ποντίκι πάνω από το link */
.footer-link:hover {
    color: #81c784; /* Αλλάζει σε απαλό πράσινο */
    text-decoration: underline; /* Μπαίνει υπογράμμιση */
}

.footer-right p {
    margin: 0;
}

/* Επιπλέον Λύσεις - Section Styles */
.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: -20px auto 40px auto;
    color: #666;
    font-size: 16px;
}

.solutions-grid {
    display: flex;
    gap: 25px;
    justify-content: space-between;
}

.solution-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    flex: 1;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Εφέ όταν ο χρήστης περνάει το ποντίκι πάνω από την κάρτα */
.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(46, 125, 50, 0.15);
}

.solution-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.solution-card h3 {
    font-size: 20px;
    color: #1b5e20;
    margin-bottom: 12px;
}

.solution-card p {
    font-size: 15px;
    color: #555;
    text-align: justify; /* Για πιο καθαρό στοιχισμένο κείμενο */
}

.financial-page {
    min-height: 75vh; /* Για να γεμίζει όμορφα η οθόνη ακόμα κι αν έχει λίγο περιεχόμενο */
}

.page-header-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.financial-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.financial-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 35px 30px;
    flex: 1 1 250px;
    max-width: 420px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
    border-top: 5px solid #2e7d32;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.financial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(46, 125, 50, 0.16);
}

.card-year-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e8f5e9;
    color: #1b5e20;
    font-weight: 700;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 20px;
}

.card-icon {
    font-size: 44px;
    margin-bottom: 12px;
}

.financial-card h3 {
    font-size: 22px;
    color: #1b5e20;
    margin-bottom: 12px;
}

.financial-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.download-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 18px;
    font-size: 15px;
}

.back-home-wrap {
    text-align: center;
    margin-top: 45px;
}

.back-link {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.back-link:hover {
    color: #1b5e20;
    text-decoration: underline;
}