/* Γενικά Στυλ */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f7f6;
    color: #333;
    margin: 0;
    padding: 20px;
}
.container {
    max-width: 1000px; /* Λίγο μεγαλύτερο για 3 κάρτες */
    margin: auto;
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
h1 {
    text-align: center;
    color: #2c3e50;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}
p {
    text-align: center;
    font-size: 1.1em;
    color: #555;
}
hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 25px 0;
}

/* Στυλ Μενού (Navigation) */
nav {
    background-color: #ecf0f1;
    padding: 10px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 8px;
}
nav a {
    text-decoration: none;
    color: #3498db;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
}
nav a:hover { background-color: #dde; }
nav a.active { background-color: #007bff; color: white; }

/* === ΣΤΥΛ CALCULATOR (Από προηγούμενη απάντηση) === */

/* Στυλ για Dropdowns (Select) */
.service-select {
    padding: 15px 10px;
    border-bottom: 1px solid #ecf0f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.service-select label {
    font-size: 1.1em;
    font-weight: 500;
}
.service-select select {
    padding: 10px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    font-size: 1em;
    min-width: 250px;
    background-color: #fff;
}

/* Στυλ για Radio Buttons (VIP Groups / Course) */
.service-radio-group {
    padding: 20px 10px;
    border-bottom: 1px solid #ecf0f1;
}
.service-radio-group .group-title {
    font-size: 1.1em;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}
.radio-option {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}
.radio-option input[type="radio"],
.radio-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    margin-right: 12px;
    flex-shrink: 0;
    accent-color: #007bff;
}
.radio-option label { line-height: 1.4; }
.radio-option label strong { display: block; font-size: 1.05em; color: #34495e; }
.radio-option label span { font-size: 0.9em; color: #7f8c8d; }

/* Στυλ CHECKOUT SUMMARY */
#checkout-summary {
    margin-top: 25px;
    padding: 25px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
}
#checkout-summary h2 { margin-top: 0; text-align: center; color: #34495e; }
.checkout-lines { max-width: 500px; margin: 20px auto; }
.checkout-line { display: flex; justify-content: space-between; padding: 10px 0; font-size: 1.1em; }
.checkout-line span:first-child { color: #555; }
.checkout-line span:last-child { font-weight: bold; color: #2c3e50; }
#onetime-line span:last-child { color: #d35400; }

/* Στυλ για επιλογή Διάρκειας (Tabs) */
#checkout-summary h3 { text-align: center; color: #555; font-weight: 500; margin-bottom: 15px; }
.payment-term-selector {
    display: flex;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #bdc3c7;
    max-width: 600px;
    margin: 0 auto 25px auto;
}
.payment-term-selector input[type="radio"] { display: none; }
.payment-term-selector label {
    padding: 15px 20px;
    flex-grow: 1;
    text-align: center;
    cursor: pointer;
    background: #fff;
    color: #3498db;
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s;
    border-left: 1px solid #eee;
}
.payment-term-selector label:first-of-type { border-left: none; }
.payment-term-selector label:hover { background: #f4f9ff; }
.payment-term-selector input[type="radio"]:checked + label { background: #007bff; color: white; }
.payment-term-selector label span { display: block; font-size: 0.8em; font-weight: normal; opacity: 0.8; }

/* Στυλ Τελικού Ποσού (Checkout Box) */
.final-payment-box {
    background: #fff;
    border: 2px solid #007bff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.1);
}
#final-total-text { margin-bottom: 10px; }
#final-total-text .label { font-size: 1.2em; color: #34495e; font-weight: 500; display: block; }
#final-total-text .amount { font-size: 2.5em; font-weight: bold; color: #007bff; display: block; margin: 5px 0; }
#recurring-text { font-size: 1em; color: #555; }
#recurring-text #recurring-payment-amount { font-weight: 500; color: #333; }

/* === ΝΕΑ ΣΤΥΛ ΓΙΑ TIERS.HTML === */

.tiers-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px; /* Κενό ανάμεσα στις κάρτες */
    margin-top: 30px;
}

.tier-card {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 12px;
    width: 310px; /* Σταθερό πλάτος */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
    display: flex;
    flex-direction: column;
    border-top: 4px solid #ddd; /* Default border top */
    overflow: hidden; /* Για τα badges */
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Στυλ για τα Badges */
.tier-card .badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: #007bff;
    color: white;
    padding: 4px 30px;
    font-size: 0.8em;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.tier-card .badge.minimum-badge {
    background-color: #e67e22; /* Πορτοκαλί */
    font-size: 0.75em;
    top: 20px;
    right: -40px;
}

/* Στυλ για τις κάρτες Popular & Premium */
.tier-card.popular {
    border-top-color: #007bff; /* Μπλε */
}
.tier-card.premium {
    border-top-color: #f1c40f; /* Χρυσό */
}

.tier-card h3 {
    text-align: center;
    color: #2c3e50;
    font-size: 1.6em;
    margin: 30px 20px 10px 20px;
}

/* Νέο Στυλ για τις καρτέλες τιμών */
.pricing-toggle {
    display: flex;
    background: #f4f7f6;
    margin: 15px 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}
.pricing-toggle span {
    flex-grow: 1;
    text-align: center;
    padding: 10px 5px;
    font-size: 0.9em;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}
.pricing-toggle span.active {
    background-color: #007bff;
    color: white;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

/* Νέο Στυλ για την εμφάνιση τιμής */
.price-display {
    padding: 10px 20px;
    text-align: center;
}
.price-display .amount {
    font-size: 2.8em;
    font-weight: bold;
    color: #2c3e50;
    display: inline-block;
}
.price-display .term {
    font-size: 1em;
    font-weight: 500;
    color: #7f8c8d;
    display: inline-block;
    margin-left: 5px;
}
.price-display .savings {
    display: block;
    font-size: 0.9em;
    color: #27ae60; /* Πράσινο */
    font-weight: 500;
    height: 1.2em; /* Κρατάει σταθερό ύψος */
    margin-top: 5px;
}


.tier-card ul {
    list-style: '✔';
    padding: 0 20px 0 40px; /* Ευθυγράμμιση */
    margin: 15px 0;
    flex-grow: 1; 
}
.tier-card li {
    margin-bottom: 12px;
    line-height: 1.5;
    color: #333;
}

.tier-card button {
    background-color: #34495e; /* Πιο σκούρο γκρι/μπλε */
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 0 0 10px 10px; /* Ταιριάζει με την κάρτα */
    width: 100%;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 15px; /* Κενό από τη λίστα */
}
.tier-card button:hover {
    background-color: #2c3e50;
}

/* Κουμπί για το Popular & Premium */
.tier-card.popular button,
.tier-card.premium button {
    background-color: #007bff;
}
.tier-card.popular button:hover,
.tier-card.premium button:hover {
    background-color: #0056b3;
}
/* === ΝΕΑ ΣΤΥΛ ΓΙΑ STRIKETHROUGH ΣΤΟ TIERS.HTML === */

/* Νέο στυλ για την διαγραμμένη τιμή στα Tiers */
.price-display .original-amount {
    font-size: 1.5em; /* Μικρότερο από την κανονική τιμή */
    font-weight: normal;
    color: #95a5a6;
    text-decoration: line-through;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle; /* Να στοιχίζεται με την κανονική τιμή */
}

/* Τροποποίηση για να στοιχίζονται όλα σωστά */
.price-display .amount {
    font-size: 2.8em;
    font-weight: bold;
    color: #2c3e50;
    display: inline-block;
    vertical-align: middle; /* Στοίχιση */
}
.price-display .term {
    font-size: 1em;
    font-weight: 500;
    color: #7f8c8d;
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle; /* Στοίχιση */
}