body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    color: #333;
    margin: 0;
    padding: 20px;
    background-image: url("steine.jpg");
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border: 3px solid #2c3e50;
    border-color: linear-gradient(to right, #145a32, #117a65);
}

header {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 5px;
}

.logo {
    font-size: 38px;
    font-weight: bold;
    color: green;
    text-shadow: 2px 2px 4px #f13304e8;
}

h1 {
    font-size: 34px;
    color: green;
    margin: 0;
}

hr {
    margin: 20px 0;
    border: 0;
    border-top: 3px solid #423b3b;;
}
table {
  width: 100%; /* Или фиксированная ширина, если необходимо */
  overflow-x: auto;
  display: block; /* или display: table; если нужно */
}
.table-wrapper {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden; /* чтобы углы таблицы обрезались тоже */
}
  .table-wrapper td {
    margin-bottom: 20px; /* отступ между «блоками» */
  }
.righttd {
    vertical-align: top;
    background-size: contain;
    background-repeat: no-repeat;
  background-position: center;
  width:75%;
  margin-left: 0;
}
.lefttd  { 
    width: 25%;
    background-image:  url("kross.jpg");
    background-size: contain;      /* или cover, если обрезать не страшно */
  background-repeat: no-repeat;
  background-position: left;
 }
img {
    width: 100%;
}


.intro, .disclaimer, .agreement, .minnect, .contact {
    margin-bottom: 20px;
}
.intro {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.5em;
    text-align: center;
}

.minnect-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #27ae60;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.minnect-button:hover {
    background-color: #219150;
}

.agreement {
    padding: 10px;
    background-color: rgb(165, 240, 215);
    border: 1px solid #b2dfdb;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
    header {
        flex-direction: column;
    }

    .logo {
        font-size: 24px;
    }

    h1 {
        font-size: 22px;
    }

}

/* Стили для боковых полос с золотистой окантовкой */
.container {
    position: relative;
    overflow: hidden;
}

.container::before,
.container::after {
    content: \"\";
    position: absolute;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #145a32, #117a65);
    border: 1px solid gold;
}

.container::before {
    left: 0;
}

.container::after {
    right: 0;
}
