@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: rgb(44, 62, 80);
    --secondary-color: rgb(52, 152, 219);
    --success-color: rgb(39, 174, 96);
    --warning-color: rgb(243, 156, 18);
    --danger-color: rgb(231, 76, 60);
    --light-color: rgb(248, 249, 250);
    --dark-color: rgb(44, 62, 80);
    --muted-color: rgb(108, 117, 125);
    --border-color: rgb(233, 236, 239);
    --white: rgb(255, 255, 255);
    --text-light: rgb(189, 195, 199);
    --text-muted: rgb(149, 165, 166);
}

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

html, body {
    width: 100%;
    min-height: 100vh;
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-color);
    color: var(--primary-color);
    line-height: 1.6;
    font-size: 16px;
    letter-spacing: 0.01em;
    display: flex;
    flex-direction: column;
    cursor: default;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.2;
    flex-shrink: 1;
    min-width: 0;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: left;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    line-height: 1.8;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.3rem;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
    height: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}
