:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --secondary-text: #787878;
    --accent-color: #3245c0;
    --border-color: #e0e0e0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px dotted currentColor;
    transition: all 0.2s ease;
    font-weight: 400;
}

a:hover {
    border-bottom: 1px solid currentColor;
    opacity: 0.9;
}

.link-button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: var(--accent-color);
    font: inherit;
    border-bottom: 1px dotted currentColor;
    cursor: pointer;
}

.link-button:hover {
    border-bottom: 1px solid currentColor;
    opacity: 0.9;
}

.link-button:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.footer {
    color: var(--secondary-text);
    font-size: 0.8rem;
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
}
