.section1 {
    background-color: rgba(0, 0, 0, 0.3);  /* Полупрозрачный фон */
    backdrop-filter: blur(8px);            /* Размытие фона позади */
    border-radius: 16px;
    padding: 48px 32px;
    max-width: 1280px;
    margin: 80px auto;                     /* Центрирование секции */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    color: #eee;
}

.section1 .container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start;
}

.section1 .column {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section1 .content2 {
    padding-right: 24px;
}

.section1 .heading h1 {
    color: #7FE366;
    font-size: 36px;
    margin-bottom: 16px;
}

.section1 .text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.section1 .container2 {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
}

.section1 .item-stonk {
    flex: 1 1 200px;
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.section1 .item-stonk h1 {
    color: #7FE366;
    font-size: 28px;
    margin-bottom: 8px;
}

.section1 .item-stonk:hover {
    transform: scale(1.05);
}

.section1 .image {
    flex: 1 1 50%;
    max-width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.section1 .image img {
    width: 100%;     /* Картинка на всю ширину колонки */
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}


.container {
    max-width: 1280px;
    margin: auto;
    padding: 32px 16px;
}

.glass-box {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.glass-box:hover {
    transform: translateY(-4px);
}

h1 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #7FE366;
    animation: fadeInDown 0.8s ease forwards;
}

.text {
    font-size: 18px;
    line-height: 1.6;
    color: #eee;
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.container2 {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 24px;
    justify-content: space-between;
}

.item-stonk {
    flex: 1 1 200px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 16px;
}

.option-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.item {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 16px;
    transition: transform 0.3s;
}

.item:hover {
    transform: scale(1.03);
}

.history {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
    align-items: start;
}

.container-history {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    padding-left: 24px;
}

.content-history {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
}


.image {
    width: 100%;
    max-width: 640px;
    border-radius: 12px;
    margin-top: 24px;
    overflow: hidden;
}

.image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
