/* ---------------- Общий стиль сайта Capiatto ---------------- */

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    color: #333;
}

/* Верхняя шапка */
.top-bar {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 20px;
}

.logo img {
    height: 20px;
}

.nav-center a {
    margin: 0 15px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.nav-center a:hover {
    color: #c48b2c;
}


/* Контент страниц */
.page-container {
    max-width: 900px;
    margin: 60px auto;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.content-block h1 {
    text-align: center;
    margin-bottom: 30px;
}

h2 {
    margin-top: 30px;
    color: #222;
}

p, li {
    line-height: 1.6;
}

ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.footer-note {
    text-align: center;
    font-size: 0.9em;
    color: #777;
    margin-top: 30px;
}
