: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;
    line-height: 1.6;
}

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

/* Language Switcher - Abbreviated Pill Style */
.lang-switcher-container {
    display: flex;
    justify-content: flex-end;
    padding-top: 1rem;
}

.lang-switcher { 
    display: inline-flex;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
}

.lang-switcher a { 
    display: inline-block;
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem; 
    font-weight: 800; 
    text-decoration: none; 
    border-radius: 50px;
    color: #64748b;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lang-switcher a.active { 
    background-color: var(--lp-primary-color);
    color: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.lang-switcher a:not(.active):hover {
    color: var(--lp-primary-color);
}

header { padding: 1rem 0 3rem; }

.logo-link { 
    display: inline-block; 
    margin: 0 auto 2rem; 
}

.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; 
    object-fit: cover;
}

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; }
}