@charset "utf-8";
/* === RESETARE ȘI SETĂRI DE BAZĂ === */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 20px auto;
    padding: 0 20px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
}

/* === HEADER ȘI NAVIGARE PRINCIPALĂ === */
header.main-header {
    background-color: #1a237e; /* Albastru închis */
    color: #ffffff;
    padding: 20px 0;
    margin-bottom: 20px;
}
.header-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a {
    font-size: 1.8em;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}
nav.main-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
nav.main-nav li {
    display: inline-block;
    margin-left: 20px;
}
nav.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
}
nav.main-nav a:hover {
    text-decoration: underline;
}

/* === BREADCRUMB (FIRUL DE NAVIGARE) === */
.breadcrumb {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 15px;
    background-color: #eee;
    padding: 10px 15px;
    border-radius: 4px;
}
.breadcrumb a {
    color: #1e88e5;
    font-weight: 600;
}

/* === TITLURI === */
h1 { font-size: 2.5em; color: #1a237e; margin-bottom: 10px; line-height: 1.2; }
h2 { font-size: 1.8em; color: #1a237e; border-bottom: 2px solid #e0e0e0; padding-bottom: 10px; margin-top: 40px; }
h3 { font-size: 1.2em; color: #0d47a1; margin-bottom: 5px; }

/* === CONȚINUT GENERAL === */
p { font-size: 1.05em; margin-bottom: 20px; }
a { color: #1e88e5; text-decoration: none; font-weight: 500; }
a:hover { text-decoration: underline; }

/* === BUTON CTA (CALL TO ACTION) === */
.cta-button {
    display: inline-block;
    background-color: #28a745; /* Verde */
    color: #ffffff;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}
.cta-button:hover {
    background-color: #218838;
    text-decoration: none;
}

/* === ZONA FORMULAR CTA === */
.cta-form {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.cta-form h2 { margin-top: 0; border: none; text-align: center; }

/* === GRILĂ BENEFICII / PAȘI === */
.benefits-grid, .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.benefit-card, .step-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.step-card h3 { margin-top: 0; }

/* === GRILĂ SPECIALITĂȚI (HUB) === */
.specialitati-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.specialitate-card {
    display: block;
    background-color: #1e88e5;
    color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1em;
    font-weight: 600;
    transition: transform 0.2s, background-color 0.2s;
}
.specialitate-card:hover {
    background-color: #1565c0;
    transform: translateY(-3px);
    text-decoration: none;
}

/* === FAQ === */
.faq-item { border-bottom: 1px solid #eee; padding: 15px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { margin: 0; }

/* === CTA FINAL === */
.final-cta { text-align: center; margin: 50px 0; }

/* === FOOTER === */
footer.main-footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #333;
    color: #ccc;
    font-size: 0.9em;
}

/* === ADAPTARE PE MOBIL === */
@media (max-width: 768px) {
    h1 { font-size: 2em; }
    h2 { font-size: 1.5em; }
    .specialitati-grid { grid-template-columns: 1fr; }
    .header-container { flex-direction: column; }
    nav.main-nav ul { text-align: center; margin-top: 15px; }
    nav.main-nav li { display: block; margin: 10px 0; }
}
/* CSS Document */

