/* Подключение шрифтов */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

.site-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.header-section {
    text-align: center;
    padding: 50px 0;
}

.header-section img {
    width: 200px;
    height: auto;
}

.title-highlight {
    font-weight: 700;
    color: #d9534f;
}

.primary-button {
    background-color: #d9534f;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 8px;
    margin-top: 20px;
    cursor: pointer;
}

.primary-button a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.info-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 50px auto;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    width: 30%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.info-card img {
    width: 100px;
    height: auto;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #333;
    color: white;
    width: 100%;
    margin-top: 50px;
}

.footer img {
    width: 150px;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-left: 20px;
}
