/* ===== ОБЩИЕ СТИЛИ ДЛЯ СТРАНИЦЫ ===== */
body {
    margin: 0;
    padding: 20px 16px;
    background: #f3f0ea;        /* очень светлый тёплый фон */
    font-family: 'Helvetica', 'Arial', sans-serif;
    line-height: 1.5;
    color: #2f2e2b;
}

/* ===== ГЛАВНАЯ ТАБЛИЦА-КОНТЕЙНЕР ===== */
.main-table {
    width: 100%;
    max-width: 600px;            /* комфортная ширина для мобильных */
    margin: 0 auto;
    border-collapse: collapse;
    background: #ffffff;
    box-shadow: 0 4px 30px rgba(0,0,0,0.02);
}

/* ===== БАЗОВЫЕ СТИЛИ ДЛЯ ЯЧЕЕК ===== */
td {
    padding: 24px 24px;
    background: #ffffff;
    vertical-align: top;
}

/* ===== ЗАГОЛОВКИ ===== */
h1, h2, h3 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 400;
    color: #2c2a26;
    margin: 0 0 0.5rem 0;
}

h1 {
    font-size: 2.2rem;
    letter-spacing: -0.01em;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #7f6e5e;
}

/* ===== ТЕКСТ ===== */
p {
    margin: 0 0 1.2rem 0;
    font-size: 1.05rem;
    color: #3a3a3a;
}

.lead {
    font-size: 1.2rem;
    color: #4e463f;
}

/* ===== ССЫЛКИ (базовые) ===== */
a {
    color: #7b6b5c;
    text-decoration: none;
    border-bottom: 1px dotted #c2b2a3;
}

a:hover {
    color: #3e3a35;
    border-bottom: 1px solid #7b6b5c;
}

/* ===== РАЗДЕЛИТЕЛЬНАЯ ЛИНИЯ (акцент) ===== */
.accent-line {
    width: 60px;
    height: 2px;
    background: #d4c5b8;
    border: none;
    margin: 20px 0 24px 0;
}

hr.footer-line {
    width: 50px;
    height: 2px;
    background: #d4c5b8;
    border: none;
    margin: 24px auto;
}

/* ===== СПИСКИ ===== */
ul {
    margin: 0 0 1.5rem 0;
    padding-left: 20px;
}

li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
}

/* ===== ЦИТАТЫ ===== */
.quote {
    font-style: italic;
    background: #f9f6f2;
    padding: 16px 20px;
    margin: 1.8rem 0;
    border-left: 4px solid #d4c5b8;
    color: #4e463f;
}

/* ===== ТАБЛИЦЫ ДЛЯ КОНТАКТОВ (ИКОНКИ) ===== */
.contact-icons {
    margin: 20px auto;
    border-collapse: separate;
    border-spacing: 12px 0;
}

.contact-icons td {
    padding: 0;
    background: transparent;
}

.icon-link {
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 44px;
    background: #ede7e0;
    border-radius: 50%;
    color: #5f4e40;
    font-size: 1.2rem;
    font-weight: 300;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s;
}

.icon-link:hover {
    background: #dccfc4;
    color: #2b2b2b;
    border-bottom: none;
}

/* ===== ТАБЛИЦА ТЕКСТОВЫХ ССЫЛОК (ФУТТЕР) ===== */
.links-row td {
    padding: 8px 6px;
    text-align: center;
    border-bottom: 1px dashed #d6cbc0;
    background: transparent;
    font-size: 0.9rem;
}

/* ===== КОПИРАЙТ ===== */
.copyright {
    font-size: 0.8rem;
    color: #aa9f94;
    text-align: center;
    padding-top: 24px;
}

/* ===== МАЛЕНЬКИЕ ПРИМЕЧАНИЯ ===== */
.small-note {
    font-size: 0.75rem;
    color: #bcb0a4;
    margin-top: 16px;
    text-align: center;
}