: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: 1100px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }

/* Standard Pill Switcher */
.lang-switcher-container { display: flex; justify-content: flex-end; padding: 20px 0; }
.lang-switcher { display: inline-flex; background: #f1f5f9; padding: 4px; border-radius: 50px; border: 1px solid #e2e8f0; }
.lang-switcher a { display: inline-block; padding: 6px 14px; font-size: 11px; font-weight: 800; text-decoration: none; border-radius: 50px; color: #64748b; text-transform: uppercase; }
.lang-switcher a.active { background-color: var(--lp-primary-color); color: var(--white); }

/* Header */
header { padding: 60px 0 40px; }
h1 { font-family: var(--thim-font-title); color: var(--lp-secondary-color); font-size: 42px; line-height: 1.2; margin: 25px 0; }
h1 span { color: var(--lp-primary-color); }

.cta-button {
    background-color: var(--lp-primary-color);
    color: var(--white);
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

/* SWOT Grid Fix */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin: 40px 0; }
.card { padding: 40px; border-radius: var(--border-radius); border: 1px solid #eef2f6; background: var(--white); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.card-dark { background-color: var(--lp-secondary-color); color: var(--white); border: none; align-items: flex-start; text-align: left; }

.profile-img { border: 4px solid var(--lp-primary-color); border-radius: 50%; margin-bottom: 20px; width: 120px; height: 120px; object-fit: cover; }

/* SWOT Specific boxes inside the template */
.swot-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 100%; margin-top: 20px; }
.swot-box { padding: 10px; border-radius: 6px; color: white; font-size: 0.75rem; font-weight: 700; text-align: center; }
.s { background: #0d9488; } .w { background: #be123c; } .o { background: #ca8a04; } .t { background: #334155; }

footer { padding: 50px 0; background: var(--bg-light); border-top: 1px solid #e2e8f0; margin-top: 60px; }