body { 
    background: #e9e9e9; 
    color: #111;
    font-family: 'Courier New', Courier, monospace;
    margin: 0; 
    height: 100vh; 
    overflow: hidden; /* Чтобы не было полос прокрутки */
    display: flex; 
    align-items: center; 
}

.container { 
    display: flex; 
    align-items: center; 
    padding: 0 80px; 
    width: 100%; 
    z-index: 1; 
}

.content { width: 450px; z-index: 2; }

/* Картинка на весь правый край */
.visual { 
    position: absolute; 
    right: 0; 
    top: 0; 
    height: 100%; 
    width: 45%; /* Занимает почти половину экрана справа */
}

.visual img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    filter: grayscale(20%) contrast(1.1);
}

/* Остальное (кнопки) остается без изменений */
h1 { font-size: 3.5rem; line-height: 0.9; margin-bottom: 25px; }
.description { font-style: italic; font-size: 1rem; margin-bottom: 40px; }

.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.btn { 
    padding: 16px; text-align: center; text-decoration: none; color: #000;
    font-weight: 800; font-size: 0.85rem; background: #ccc;
    border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
    border: 2px solid #000; transition: 0.2s;
}
.btn:hover { background: #000; color: #fff; border-radius: 15px 225px 15px 255px/255px 15px 225px 15px; }
.full-width { grid-column: span 2; }
