
@charset "UTF-8";
/* terms.css for εγγείσα domain - Όροι Χρήσεοώς Πλατφόρμας */

/* Χρωματικό Σύστημα για Καρτούνια Όρων */
.section-title {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.section-title:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Πλαίσια με φθίνοντα ρυθμό κατά την καρδινότητα */
.content-card {
    animation: fadeInSlide 0.6s ease-out;
}

.content-card:hover {
    transition: box-shadow 0.2s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

/* Στύλοι για σύμβολα λίστας */
.feature-icon {
    margin-right: 10px;
}
.feature-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 3px;
    transition: transform 0.2s ease;
}

/* Αντίδραση σε ιδιαίτερα μικρά περιθώρια */
@media (max-width: 768px) {
    .mobile-collapse {
        overflow: hidden;
        max-height: 560px;
        transition: max-height 0.4s cubic-bezier(0,1,0,1);
    }
}

/* Κλειδιώματα ανάπτυξης */
@keyframes fadeInSlide {
    from {opacity: 0; transform: translateY(14px);}
    to {opacity: 1; transform: translateY(0);}
}

