@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #2e2e2e;
    background: #f5f0e6;
    line-height: 1.6;
}

a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    text-decoration: underline;
}

h1 {
    text-align: center;
    font-size: 28px;
    color: #3e2a16;
    margin: 30px 0;
}

h2 {
    color: #6e4b1f;
    font-size: 22px;
    margin-bottom: 15px;
}

p {
    text-align: justify;
    text-indent: 1.5em;
    margin-bottom: 15px;
}

ul {
    margin-left: 1.5em;
    list-style: disc;
}

/* Навигация */
.nav {
    display: flex;
    justify-content: center;
    background-color: #463c2f;
    flex-wrap: wrap;
}

.nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    background: linear-gradient(90deg, #7a5c3e, #b5874a);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    flex: 1 1 200px;
    border-right: 1px solid #d9c6a5;
    transition: background 0.3s, transform 0.2s;
}

.nav a:last-child {
    border-right: none;
}

.nav a:hover {
    background: #6e4b1f;
    transform: scale(1.03);
}

/* Контейнер и текстовые блоки */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 5%;
    gap: 30px;
}

.text-block {
    flex: 1 1 45%;
    background: #fffef9;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 6px solid #b5874a;
}

/* Баннер */
.banner {
    text-align: center;
    margin-top: 30px;
}

.banner img {
    width: auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    display: block;
    margin: 0 auto;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #463c2f;
    color: #dcd2b5;
    margin-top: 40px;
}

/* Элементы внутри специальных контейнеров */
.ex-cont ul {
    list-style: none;
    padding-left: 0;
}

.ex-cont li {
    margin-bottom: 10px;
}

.ex-cont a {
    display: inline-block;
    background-color: #b5874a;
    color: white;
    padding: 4px 10px;
    margin-left: 4px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease-in-out;
}

.ex-cont a:hover {
    background-color: #6e4b1f;
}
#content {
  text-indent: 20px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .text-block {
        flex: 1 1 100%;
    }

    .nav a {
        flex: 1 1 100%;
    }
}

#link_color {
    color: #b5874a;
}