/* Import font Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: white; 
    color: #000;
}

/* --- TITLURI GLOBALE --- */
h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
    margin-top: 0;
    text-align: center;
}

h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
}

/* --- SECTION: PRE-FOOTER (FUNDAL CURAT #333366) --- */
.pre-footer {
    padding: 80px 0 40px 0; 
    background-color: #333366; 
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.pre-footer-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

/* Titluri categorii #C9ED8A conform pattern-ului de logo */
.pre-footer-col h4 {
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #C9ED8A; 
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-left: 15px;
}

.pre-footer-col h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 12px;
    background-color: #C9ED8A;
    border-radius: 2px;
}

.pre-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pre-footer-col ul li {
    margin-bottom: 12px;
}

.pre-footer-col ul li a {
    text-decoration: none;
    color: #bbb;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-block;
}

/* Hover culoarea #C9ED8A */
.pre-footer-col ul li a:hover {
    color: #C9ED8A; 
    transform: translateX(3px);
}

/* --- BADGES IMAGINI --- */
.pre-footer-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px; 
    flex-wrap: wrap;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pre-footer-badges a {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

/* DIMENSIUNI SPECIFICE BADGES */
.pre-footer-badges img[alt*="CenterSafe"] { height: 120px !important; width: auto; }
.pre-footer-badges img[alt*="ANPC"], .pre-footer-badges img[alt*="SOL"] { height: 30px !important; width: auto; }
.pre-footer-badges img[alt*="Plata"] { height: 40px; width: auto; }

.pre-footer-badges a:hover {
    transform: scale(1.05);
}

/* --- FOOTER FINAL (FUNDAL CURAT #333366) --- */
.main-footer {
    background-color: #333366;
    color: #ffffff;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 0 !important;
}

/* Textul CenterMag cu culoarea #C9ED8A */
.footer-logo-text {
    color: #C9ED8A;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-container p {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
}

.main-footer a:hover {
    color: #C9ED8A;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}