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

/* Навигация и хедер */
header {
    background: #4a6fa5; /* Темно-синий */
    padding: 1em 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5em 1em;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #5d82b3;
    border-radius: 4px;
}

/* Основной контент */
main {
    padding: 20px;
    max-width: 900px;
    margin: 20px auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

h1 {
    text-align: center;
    color: #333;
}

/* Кнопки */
.button {
    display: block;
    width: 200px;
    margin: 20px auto;
    padding: 10px 15px;
    background: #e35d6a; /* Красный/Акцент */
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    border: none; /* Для формы */
    cursor: pointer;
}

.button:hover {
    background: #d44c5a;
}

.button-small {
    background: #6c5ce7; /* Фиолетовый */
    display: inline-block;
    width: auto;
    margin: 10px 0 0 0;
    padding: 8px 12px;
}

.button-small:hover {
    background: #5a4ac3;
}

/* Секция Туров */
.tour-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tour-item {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 6px;
}

.tour-item h3 {
    color: #4a6fa5;
}

/* Форма контактов */
.contact-form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.contact-form input[type="text"], 
.contact-form input[type="email"], 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Важно для корректной ширины */
}

/* Футер */
footer {
    text-align: center;
    padding: 1em 0;
    background: #333;
    color: white;
    margin-top: 20px;
}