/* Основные стили */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap');

body {
    background-color: var(--warm-cream);
    color: var(--text-dark);
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

/* Ссылки */
a {
    color: var(--warm-brown);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--warm-dark-brown);
    text-decoration: none;
}

/* Заголовки */
h1, h2, h3, h4, h5, h6 {
    color: var(--warm-dark-brown);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Параграфы */
p {
    margin-bottom: 1rem;
}

/* Списки */
ul, ol {
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Изображения */
img {
    max-width: 100%;
    height: auto;
}

/* Таблицы */
table {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
}

th, td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid var(--border-color);
}