/* --- PAGINA GDPR / LEGAL REFINATĂ --- */

.tm-legal-doc {
    background: #ffffff;
    padding: 60px;
    border-radius: 12px; /* Rotunjire mai elegantă */
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.05); /* Umbră mai fină, navy */
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8; /* Spațiere mai bună între rânduri */
}

.tm-legal-section {
    margin-bottom: 50px;
    padding-bottom: 20px;
}

.tm-legal-section h2 {
    font-size: 24px;
    color: var(--tm-navy);
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

/* Evităm spațiile urâte cauzate de justify pe linii scurte */
.tm-legal-section p {
    font-size: 16px;
    color: #334155;
    margin-bottom: 20px;
    text-align: left; /* Mai sigur pentru web modern decât justify */
}

/* Box-ul pentru datele firmei */
.tm-highlight-box {
    background: #f1f5f9;
    border-left: 4px solid var(--tm-navy);
    padding: 24px;
    font-size: 16px;
    color: var(--tm-navy);
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

/* Liste stilizate */
.tm-legal-section ul li,
.tm-legal-section ol li {
    margin-bottom: 12px;
    padding-left: 5px;
}

/* Link-uri de contact */
.tm-legal-doc a {
    color: var(--tm-navy);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--tm-line);
    transition: all 0.2s ease;
}

.tm-legal-doc a:hover {
    color: var(--tm-navy2);
    border-bottom-color: var(--tm-navy2);
    background: var(--tm-soft);
}