
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: #f8fafc;
    color: #1e293b;
    font-family: "Inter", sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}


:root {

    --header-footer: #01163e;

    --primary: #3f51b5;

    --primary-hover: #32408f;

    --background: #f8fafc;

    --card-bg: #ffffff;

    --text-dark: #1e293b;

    --text-light: #64748b;

    --border-color: #e2e8f0;

    --shadow:
        0 4px 12px rgba(0, 0, 0, 0.08);

    --radius: 14px;
}


h1 {
    font-family: "Playfair Display", serif;
}

h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter", sans-serif;
}
button,

label {
    font-family: "Inter", sans-serif;
}

h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.15;
}


h3 {
    font-size: 30px;
    font-weight: 500;
}

p {
    font-size: 20px;
    font-weight: 400;
}


.container {

    width: 100%;

    max-width: 1280px;

    margin: 0 auto;

    padding-left: 20px;

    padding-right: 20px;
}


.site-header {

    background: var(--header-footer);

    height: 100px;

    display: flex;

    align-items: center;

    position: sticky;

    top: 0;

    z-index: 1000;
}

.site-header .container {

    display: flex;

    align-items: center;
}

.brand-link {

    display: flex;

    align-items: center;

    gap: 12px;

    text-decoration: none;
}

.logo {

    height: 54px;

    width: auto;

    display: block;
}

.brand-text {

    display: flex;

    align-items: center;

    gap: 6px;

    font-family: "Inter", sans-serif;

    font-size: 34px;

    font-weight: 600;
}

.brand-chart {
    color: #ffffff;
    font-weight: 600;
}

.brand-vacancy {
    color: var(--primary);
    font-weight: 600;
}


.about-section {
    padding: 80px 0 40px;
}

.faq-section {
    padding: 40px 0 80px;
}

.section-heading {

    margin-bottom: 30px;

    text-align: center;
}

.section-heading h2 {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-size: 36px;

    font-weight: 600;

    color: var(--primary);
}

.section-heading h2 i {

    font-size: 28px;

    color: var(--primary);
}


.about-card {

    background: var(--card-bg);

    border-radius: var(--radius);

    box-shadow: var(--shadow);

    padding: 32px;

    margin-bottom: 24px;

    border: 1px solid var(--border-color);
}

.about-card h3 {

    margin-bottom: 16px;
}

.about-card p {

    color: var(--text-dark);
}


.faq-item {

    background: var(--card-bg);

    border-radius: var(--radius);

    box-shadow: var(--shadow);

    border: 1px solid var(--border-color);

    margin-bottom: 16px;

    overflow: hidden;
}

.faq-question {

    width: 100%;

    background: transparent;

    border: none;

    padding: 24px 28px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    cursor: pointer;

    font-size: 22px;
    font-weight: 500;

    text-align: left;

    color: var(--text-dark);
}

.faq-icon {

    font-size: 20px;

    transition: transform 0.3s ease;
}

.faq-answer {

    display: none;

    padding: 0 28px 24px;
}

.faq-answer p {

    font-size: 20px;

    color: var(--text-light);
}


.site-footer {

    background: var(--header-footer);

    color: #ffffff;

    margin-top: 80px;

    padding-top: 60px;
}

.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr
        1.3fr;

    gap: 50px;

    align-items: start;
}

.footer-brand {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;
}

.footer-logo {

    height: 44px;

    width: auto;
}

.footer-brand h3 {

    font-family: "Inter", sans-serif;

    font-size: 28px;

    font-weight: 500;
}

.footer-brand .brand-highlight {

    color: var(--primary);

    font-weight: 600;
}

.footer-column h4 {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 16px;

    font-size: 18px;

    font-weight: 500;

    min-height: 32px;
}


.footer-column h4 i {

    color: var(--primary);

    font-size: 24px;
}

.footer-column ul {

    list-style: none;
}

.footer-column li {

    margin-bottom: 12px;
}

.footer-column a {

    color: #cbd5e1;

    text-decoration: none;

    transition: color 0.3s ease;
}

.footer-column a:hover {

    color: var(--primary);
}

.footer-column p {

    color: #cbd5e1;

    max-width: 260px;
}

.footer-bottom {

    border-top: 1px solid rgba(255,255,255,0.8);

    margin-top: 50px;

    padding: 25px 0;

    text-align: center;
}

.footer-bottom p {

    font-size: 16px;
}

.footer-disclaimer {

    margin-top: 8px;

    color: #94a3b8;
}

.seo-content {

    max-width: 900px;

    margin: 0 auto;

}

.seo-content h2 {

    font-family: "Bricolage Grotesque", sans-serif;

    font-size: 32px;

    font-weight: 500;

    color: #01163e;

    margin-top: 50px;

    margin-bottom: 30px;

}

.seo-content p {

    font-size: 20px;

    line-height: 1.9;

    color: #1f2937;

    margin-bottom: 20px;

}

.seo-content ul,
.seo-content ol {

    margin-left: 30px;

    margin-bottom: 25px;

}

.seo-content li {

    font-size: 20px;

    line-height: 1.9;

    color: #1f2937;

    margin-bottom: 10px;

}