* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

.hero {
    min-height: 100vh;
    /* background: url('static/img/фон.jpg') center/cover; */
    position: relative;
    padding: 20px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.content {
    position: relative;
    z-index: 1;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: calc(100vh - 40px);
    max-width: 1200px;
    margin: 0 auto;
}

.text-content {
    padding-right: 50px;
    animation: slideIn 1s ease-out;
}

.image-content {
    text-align: center;
}

h1 {
    font-size: 3.2rem;
    /* margin-bottom: 25px; */
    line-height: 1.2;
}

img {
    width: 50px;
    height: 50px;
}

.highlight {
    color: #00ff88;
}

.features {
    margin: 20px 0;
    display: grid;
    grid-gap: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 13px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    font-size: 2rem;
    margin-right: 15px;
    color: #00ff88;
}

.cta-container {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.cta-button {
    padding: 15px 40px;
    border: 2px solid #00ff88;
    background: transparent;
    color: #00ff88;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.cta-button.fill {
    background: #00ff88;
    color: #1a1a1a;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .text-content {
        padding-right: 0;
        /* padding: 20px; */
    }

    .cta-container {
        flex-direction: column;
    }

    h1 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin: 0 0 15px 0;
    }
}