/* Обнуление отступов и полей для всех элементов */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Основные стили для страницы */
body {
    font-family: 'Arial', sans-serif;
    background-color: #fff; /* Темный фон страницы */
    line-height: 1.5;
    margin: 0;
    padding: 0;
    margin-right: 20;
    margin-left: 20;
}

/* Стили для шапки страницы */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.logo img {
    width: 150px; /* Ширина логотипа */
    height: auto;
}

nav ul {
    display: flex;
    list-style-type: none;
    align-items: center;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li a.btn-register {
    background-color: #fbc531;
    color: #000;
}

nav ul li a.btn-register:hover {
    background-color: #e1b30a;
}

nav ul li a.btn-login {
    background-color: transparent;
    border: 2px solid #000;
    color: #000;
}

nav ul li a.btn-login:hover {
    background-color: #000;
    color: #fff;
}

/* Стили для hero секции */
.hero {
    display: flex;
    justify-content: space-between;
    padding: 60px;
    background-color: #111;
    color: #fff;
    position: relative;
}

.text-content {
    max-width: 500px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
}

.btn-yellow {
    display: inline-block;
    padding: 15px 30px;
    background-color: #fbc531;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-yellow:hover {
    background-color: #e1b30a;
}

/* Увеличенное изображение на 30% */
.hero img.right-image {
    max-width: 650px; /* Увеличено на 30% */
    height: auto;
    margin-left: 50px;
}

.text1 {
    margin-left: 50px;
    margin-right: 50px;
    font-color: #000000;
}



/* Стили для footer */
footer {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #fff;
    border-top: 1px solid #ddd;
}

.company-info {
    max-width: 500px;
    font-size: 16px;
    color: #777;
    line-height: 1.6;
    margin-right: 50px; /* Уменьшили отступ между текстом и колонками */
}

/* Секция Legal Documents в 2 колонки */
.footer-links {
    display: flex; /* Flexbox для колонок */
    justify-content: space-between;
    width: 50%; /* Ширина блока ссылок */
}

.footer-links div {
    display: flex;
    flex-direction: column; /* Колонки располагаются вертикально */
    margin-left: 10px; /* Уменьшаем отступ между колонками до 10px */
}

.footer-links h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    margin-bottom: 5px; /* Отступ между ссылками */
}

.footer-links a:hover {
    color: #000;
    text-decoration: underline;
}
