.info-section {
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    margin-bottom: 24px;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-glass);
    margin-left: 20px;
    margin-right: 20px;
}

.info-section h1 {
    margin-bottom: 8px;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.info-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 60%;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 400;
}

.info-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

@media screen and (max-width: 767px) {
    .info-section {
        margin-left: 0;
        margin-right: 0;
        border-radius: var(--radius-lg);
        padding: 20px 16px;
    }

    .info-section h1 {
        margin-bottom: 16px;
        font-size: 1.3rem;
    }

    .info-content {
        flex-direction: column;
    }

    .info-text {
        max-width: 100%;
    }
}
