body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f3f3f3;
    background-image: linear-gradient(135deg, #f3f3f3 25%, #e3e3e3 100%);
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    border-bottom: 2px solid #444;
    font-size: 2em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

main {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: #fafafa;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 40px auto;
}

.container {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.container:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.container img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
    margin-right: 20px;
    border-radius: 8px;
}

.container:hover img {
    transform: scale(1.1);
}

.text {
    flex: 1;
    color: #555;
    line-height: 1.8;
}

.text h2 {
    margin-top: 0;
    color: #333;
    font-size: 1.8em;
    font-weight: bold;
}

.text p {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.order-info {
    margin-top: 20px;
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.order-info h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1.5em;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
}

.order-info p {
    margin: 5px 0;
    font-size: 1.1em;
}

/* Новые стили для кнопки */
.header-with-button {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px; /* Перемещаем кнопку выше на 5 пикселей */
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff; /* Белый текст */
    background-color: #555; /* Темный серый цвет */
    border: none;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #333; /* Более темный серый при наведении */
    transform: translateY(-3px);
}
