/* Общие стили для сайта */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

h1, h2, h3 {
    color: #1a1a1a;
}

h2 {
    font-size: 1.8em;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

a {
  color: #333333;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
    max-width: 1100px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
}

/* Стили для шапки */
header {
    background: linear-gradient(135deg, #000000, #4d4d4d);
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

header h1 {
    color: #fff;
    margin: 0;
    font-size: 2.2em;
}

/* Стили для навигации */
nav {
    text-align: center;
    padding: 15px 0;
    background-color: #333;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav a {
    margin: 0 15px;
    color: #fff;
    font-weight: bold;
}

/* Стили для списков */
ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-check-circle-fill" viewBox="0 0 16 16"><path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z"/></svg>') no-repeat left center;
    padding-left: 25px;
    margin-bottom: 10px;
}

/* Стили для секции FAQ */
#faq ul li {
    background: none;
    padding-left: 0;
}
#faq ul strong {
    display: block;
    margin-top: 10px;
}

/* Стили для подвала */
footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}
footer a {
    margin: 0 15px;
    color: #fff;
}

/* Стили для страницы "История" (vesture.html) */
.timeline-event {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    gap: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.event-image {
    flex: 0 0 250px;
}
.event-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}
.event-content {
    flex: 1;
}
.timeline-event:nth-child(even) {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .timeline-event, .timeline-event:nth-child(even) {
        flex-direction: column;
    }
    .event-image {
        flex-basis: auto;
        width: 100%;
        margin-bottom: 20px;
    }
}
.press-release-content blockquote {
    border-left: 4px solid #ccc;
    padding-left: 20px;
    font-style: italic;
    color: #555;
    margin: 20px 0;
}
.press-release-content .signature {
    margin-top: 30px;
    font-weight: bold;
}

/* Добавь это в конец style.css для иконок */
.event-content h2 i,
.event-content p i {
    margin-right: 10px; /* Небольшой отступ для иконки */
    color: #555; /* Слегка приглушенный цвет, чтобы не рябило */
}
.event-content p a i {
     color: inherit; /* Иконка в ссылке будет того же цвета, что и ссылка */
}