:root {
    --lp-primary-color: #0184c1;
    --lp-secondary-color: #082645;
    --thim-body-color: #444444;
    --thim-font-title: 'Poppins', sans-serif;
    --thim-font-body: 'Inter', sans-serif;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--thim-font-body);
    color: var(--thim-body-color);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }

/* Fixed Centered Logo & Switcher */
.header-top { position: relative; padding-top: 1rem; }
.lang-switcher { text-align: right; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 1rem; }
.lang-switcher a { color: #999; text-decoration: none; margin-left: 10px; }
.lang-switcher a.active { color: var(--lp-primary-color); }

header { padding: 1rem 0 3rem; }

/* THE FIX: Absolute centering and margin-bottom */
.logo-link { 
    display: inline-block; 
    margin: 0 auto 2rem; /* Balanced centering + 2rem breathing space */
}

.global-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(1, 132, 193, 0.08);
    color: var(--lp-primary-color);
    font-weight: 800;
    font-size: 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.location-top {
    color: var(--lp-primary-color);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

h1 { 
    font-family: var(--thim-font-title);
    color: var(--lp-secondary-color);
    font-size: 3.2rem; 
    line-height: 1.25; 
    margin-top: 4rem; 
    margin-bottom: 2rem; 
}
h1 span { color: var(--lp-primary-color); }

.cta-button {
    background-color: var(--lp-primary-color);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    text-transform: uppercase;
}
.cta-button:hover { background-color: var(--lp-secondary-color); transform: translateY(-3px); }

.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin: 4rem 0; align-items: stretch; }
.card { padding: 3rem 2.5rem; border-radius: var(--border-radius); border: 1px solid #f0f0f0; background: var(--white); display: flex; flex-direction: column; justify-content: center; }
.card-dark { background-color: var(--lp-secondary-color); color: var(--white); border: none; }

.profile-img { border: 4px solid var(--lp-primary-color); border-radius: 50%; margin: 0 auto 1.5rem; }

footer { padding: 4rem 0 2rem; background-color: var(--bg-light); border-top: 1px solid #e2e8f0; margin-top: 4rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; margin-top: 3.5rem; line-height: 1.4; }
    .grid { grid-template-columns: 1fr; gap: 3rem; }
    .cta-button { width: 100%; text-align: center; }
}